module Main exposing (main) import Html exposing (..) import Html.Attributes exposing (..) banner = {- TODO Add a logo and tagline to this banner, so its structure becomes: HINT 1: the
above is an element with 2 child nodes. HINT 2: the
below is an element with text. -} div [ class "banner" ] [ div [ class "container" ] [ text "TODO: Put a

here instead of this text, then add a

right after the

" ] ] feed = div [ class "feed-toggle" ] [ text "(In the future we’ll display a feed of articles here!)" ] main = div [ class "home-page" ] [ p [] [ text "TODO: Replace this

with the banner" ] , div [ class "container page" ] [ div [ class "row" ] [ div [ class "col-md-9" ] [ feed ] , div [ class "col-md-3" ] [] ] ] ]