From 79545b20f15ed0e90e7de45c161974a507db2cb0 Mon Sep 17 00:00:00 2001 From: Richard Feldman Date: Thu, 1 Sep 2016 00:51:54 -0700 Subject: [PATCH] Revise part1 --- part1/Main.elm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/part1/Main.elm b/part1/Main.elm index d9f6a2b..604c950 100644 --- a/part1/Main.elm +++ b/part1/Main.elm @@ -15,8 +15,7 @@ model = elmHubHeader = header [] - [ -- TODO wrap the following text in an

- text "ElmHub" + [ h1 [] [ text "ElmHub" ] , span [ class "tagline" ] [ text "Like GitHub, but for Elm things." ] ] @@ -29,6 +28,7 @@ view model = [ span [ class "star-count" ] [{- TODO display the number of stars -}] -- TODO use the model to put a link here that points to -- https://github.com/TheSeamau5/elm-checkerboardgrid-tutorial + -- by prepending the "https://github.com/" part. ] ] ]