Skip to content

Instantly share code, notes, and snippets.

@mccrodp
Created May 17, 2017 03:53
Show Gist options
  • Save mccrodp/fff18e32bf7584045e48a96ce6430c46 to your computer and use it in GitHub Desktop.
Save mccrodp/fff18e32bf7584045e48a96ce6430c46 to your computer and use it in GitHub Desktop.
Elm Bootstrap Navbar menu for Bell Template
navigation : Model -> Html Msg
navigation model =
Navbar.config NavbarMsg
|> Navbar.lightCustomClass "navbar-inverse"
|> Navbar.withAnimation
|> Navbar.collapseSmall
|> Navbar.container
|> Navbar.brand [ href "/" ] [
img [ alt "", src "img/logo-nav.png" ][]
]
|> Navbar.items
[ Navbar.itemLink (linkAttrs AboutR) [ text "About" ]
, Navbar.itemLink (linkAttrs ScheduleR) [ text "Schedule" ]
, Navbar.itemLink (linkAttrs InstructorsR) [ text "Instructors" ]
, Navbar.itemLink (linkAttrs ContactR) [ text "Contact" ]
]
|> Navbar.customItems [ socialMenu ]
|> Navbar.view model.navbarState
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment