summaryrefslogtreecommitdiff
path: root/templates/navbar.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/navbar.html')
-rw-r--r--templates/navbar.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/navbar.html b/templates/navbar.html
new file mode 100644
index 0000000..0b2908e
--- /dev/null
+++ b/templates/navbar.html
@@ -0,0 +1,17 @@
+<div class="navbar-fixed">
+ <nav style="color: #ffffff; background-color: #00838f;">
+ <div class="container">
+ {% if nav_link %}
+ <a class="main" href="{{ nav_link }}">{{ title }}</a>
+ {% else %}
+ <span class="main">{{ title }}</span>
+ {% endif %}
+ <ul id="nav-mobile" style="float: right;">
+ <li class="waves-effect waves-light">
+ <a onClick="javascript:toggleTheme()"><i class="material-icons" aria-label="Farbschema invertieren">invert_colors</i></a>
+ </li>
+ <li><a href="/"><i class="material-icons" aria-label="Stationen in der Umgebung suchen">my_location</i></a></li>
+ </ul>
+ </div>
+ </nav>
+</div>