module Pages.{{module}} exposing (Model, Msg, page) import Gen.Params.{{module}} exposing (Params) import Page import Request import Shared import View exposing (View) page : Shared.Model -> Request.With Params -> Page.With Model Msg page shared req = Page.element { init = init , update = update , view = view , subscriptions = subscriptions } -- INIT type alias Model = {} init : ( Model, Cmd Msg ) init = ( {}, Cmd.none ) -- UPDATE type Msg = ReplaceMe update : Msg -> Model -> ( Model, Cmd Msg ) update msg model = case msg of ReplaceMe -> ( model, Cmd.none ) -- SUBSCRIPTIONS subscriptions : Model -> Sub Msg subscriptions model = Sub.none -- VIEW view : Model -> View Msg view model = View.placeholder "{{module}}"