mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-11-28 23:12:22 +03:00
628 B
628 B
elm-pages 2.0
elm-pages generate Projects.Username_.Repo_
type alias RouteParams =
{ username : String, repo : String }
template : Template RouteParams StaticData
template =
Template.noStaticData
{ head = head
, staticRoutes = StaticHttp.succeed []
}
|> Template.buildNoState { view = view }
view :
StaticPayload StaticData RouteParams
-> Document Msg
view static =
{ title = "TODO title"
, body = []
}
Core Concepts
- Page Templates (
Template.*.elm
) DataSource
sShared.elm
,Site.elm
Page Templates
Here's another body