Update part1 example

This commit is contained in:
Richard Feldman
2018-05-05 05:03:16 -04:00
parent ebd6b4e634
commit 496ff2ae1a

View File

@@ -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 "(Well display some articles here later!!!!)" ] div [ class "feed-toggle" ] [ text "(In the future well display a feed of articles here!)" ]