···66import Material.Icons.Navigation as Icons
77import Material.Icons.Notification as Icons
88import Sources exposing (..)
99+import Tachyons.Classes as T
910import UI.Core
1111+import UI.Kit
1012import UI.Navigation exposing (..)
1113import UI.Page as Page
1214···3032index model =
3133 chunk
3234 []
3333- [ UI.Navigation.local
3535+ [ -----------------------------------------
3636+ -- Navigation
3737+ -----------------------------------------
3838+ UI.Navigation.local
3439 [ ( Icon Icons.add
3540 , Label "Add a new source" Shown
3641 , GoToPage (Page.Sources Sources.Index)
···4146 )
4247 ]
4348 model.page
4949+5050+ -----------------------------------------
5151+ -- Content
5252+ -----------------------------------------
5353+ , UI.Kit.canister
5454+ [ UI.Kit.h1 "Sources"
5555+ , [ text "A source is a place where your music is stored."
5656+ , lineBreak
5757+ , text "By connecting a source, the application will scan it and keep a list of all the music in it."
5858+ , lineBreak
5959+ , text "It will not copy anything."
6060+ ]
6161+ |> Html.span []
6262+ |> UI.Kit.intro
6363+ ]
4464 ]