elm-pages-v3-beta/examples/routing/slides.md
2021-04-28 08:28:56 -07:00

38 lines
628 B
Markdown

## elm-pages 2.0
```
elm-pages generate Projects.Username_.Repo_
```
```elm
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`s
- `Shared.elm`, `Site.elm`
## Page Templates
Here's another body