Add part8

This commit is contained in:
Richard Feldman
2018-08-12 09:49:12 -04:00
parent 84b9e97023
commit 5777848d74
55 changed files with 5943 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
module Page.NotFound exposing (view)
import Asset
import Html exposing (Html, div, h1, img, main_, text)
import Html.Attributes exposing (alt, class, id, src, tabindex)
-- VIEW
view : { title : String, content : Html msg }
view =
{ title = "Page Not Found"
, content =
main_ [ id "content", class "container", tabindex -1 ]
[ h1 [] [ text "Not Found" ]
, div [ class "row" ]
[ img [ Asset.src Asset.error ] [] ]
]
}