summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornsensfel <SpamShield0@noot-noot.org>2017-10-23 16:47:53 +0200
committernsensfel <SpamShield0@noot-noot.org>2017-10-23 16:47:53 +0200
commit3b9ba42a1c4afb3ec63dc72698912ab65a0c94d8 (patch)
treefc629e86eeebae93b2268b48cd4a22e6233841c6 /src/battlemap/src/View/Header.elm
parent86ed44e3b3e9a09a7377a0b9a6e53b79e295c5e9 (diff)
Adds tabs to the footer menu, no CSS for it though.
Diffstat (limited to 'src/battlemap/src/View/Header.elm')
-rw-r--r--src/battlemap/src/View/Header.elm24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/battlemap/src/View/Header.elm b/src/battlemap/src/View/Header.elm
new file mode 100644
index 0000000..3a86741
--- /dev/null
+++ b/src/battlemap/src/View/Header.elm
@@ -0,0 +1,24 @@
+module View.Header exposing (get_html)
+
+-- Elm -------------------------------------------------------------------------
+import Html
+import Html.Attributes
+
+-- Battlemap -------------------------------------------------------------------
+import Event
+
+import Model
+
+--------------------------------------------------------------------------------
+-- EXPORTED --------------------------------------------------------------------
+--------------------------------------------------------------------------------
+get_html : Model.Type -> (Html.Html Event.Type)
+get_html model =
+ (Html.div
+ [
+ (Html.Attributes.class "battlemap-header")
+ ]
+ [
+ (Html.text "Tacticians Online - Development Branch")
+ ]
+ )