This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type alias Model = | |
{ .... | |
, route : Sitemap | |
, querystring : QueryString | |
... } | |
type Msg | |
= RouteTo Sitemap QueryString | |
| RouteChanged Sitemap QueryString |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Routes exposing (..) | |
import Navigation exposing (Location) | |
import Route exposing (..) | |
import Combine exposing ((<$),(*>),(<$>)) | |
import Combine.Num | |
type Sitemap | |
= ProfileR String Profile | |
| NotFoundR | |
NewerOlder