summaryrefslogtreecommitdiff |
diff options
Diffstat (limited to 'src/main-menu/src/View/Roster.elm')
-rw-r--r-- | src/main-menu/src/View/Roster.elm | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/src/main-menu/src/View/Roster.elm b/src/main-menu/src/View/Roster.elm new file mode 100644 index 0000000..2876605 --- /dev/null +++ b/src/main-menu/src/View/Roster.elm @@ -0,0 +1,48 @@ +module View.Roster exposing (get_html) + +-- Elm ------------------------------------------------------------------------- +import Html +import Html.Attributes + +-- Main Menu ------------------------------------------------------------------- +import Struct.Event + +-------------------------------------------------------------------------------- +-- LOCAL ----------------------------------------------------------------------- +-------------------------------------------------------------------------------- + +-------------------------------------------------------------------------------- +-- EXPORTED -------------------------------------------------------------------- +-------------------------------------------------------------------------------- +get_html : (Html.Html Struct.Event.Type) +get_html = + (Html.div + [ + (Html.Attributes.class "main-menu-roster") + ] + [ + (Html.div + [ + (Html.Attributes.class "main-menu-roster-header") + ] + [ + (Html.text "Characters") + ] + ), + (Html.div + [ + (Html.Attributes.class "main-menu-roster-options-body") + ] + [ + (Html.a + [ + (Html.Attributes.href "/roster-editor/") + ] + [ + (Html.text "Edit Main Roster") + ] + ) + ] + ) + ] + ) |