Update part1 example
This commit is contained in:
@@ -9,14 +9,14 @@ page =
|
|||||||
[ p [] [ text "TODO: Replace this <p> with the banner" ]
|
[ p [] [ text "TODO: Replace this <p> with the banner" ]
|
||||||
, div [ class "container page" ]
|
, div [ class "container page" ]
|
||||||
[ div [ class "row" ]
|
[ div [ class "row" ]
|
||||||
[ div [ class "col-md-9" ] [ viewFeed ]
|
[ div [ class "col-md-9" ] [ feed ]
|
||||||
, div [ class "col-md-3" ] []
|
, div [ class "col-md-3" ] []
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
viewBanner =
|
banner =
|
||||||
{- TODO Add a logo and tagline to this banner, so its structure becomes:
|
{- TODO Add a logo and tagline to this banner, so its structure becomes:
|
||||||
|
|
||||||
<div class="banner">
|
<div class="banner">
|
||||||
@@ -32,9 +32,9 @@ viewBanner =
|
|||||||
-}
|
-}
|
||||||
div [ class "banner" ]
|
div [ class "banner" ]
|
||||||
[ div [ class "container" ]
|
[ div [ class "container" ]
|
||||||
[ text "hi" ]
|
[ text "TODO: Put a <h1> here instead of this text, then add a <p> right after the <h1>" ]
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
viewFeed =
|
feed =
|
||||||
div [ class "feed-toggle" ] [ text "(We’ll display some articles here later!!!!)" ]
|
div [ class "feed-toggle" ] [ text "(In the future we’ll display a feed of articles here!)" ]
|
||||||
|
|||||||
Reference in New Issue
Block a user