rundis / elm-bootstrap / Bootstrap.CDN

A helper module for easily embedding CSS when you want to work with the library using the Elm Reactor.

stylesheet : Html msg

Allows you to embed the Bootstrap CSS as a node in your view.

import Bootstrap.CDN

view : Model -> Html Msg
view model =
    div []
        [ CDN.stylesheet -- css embedded inline.
        , yourContentHere
        , navbar model
        , mainContent model
        ]

fontAwesome : Html msg

Font Awesome can also be conveniently included as an inline node. Font Awesome is not a dependency for elm-bootstrap.