diff options
author | Daniel Friesel <derf@finalrewind.org> | 2021-06-27 20:28:28 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2021-06-27 20:28:28 +0200 |
commit | 00bcc7c2aa211aed0053dcc6a09aa6d2a476b9ab (patch) | |
tree | c8a33b5a96aaa7f9c1910f65e009cb02f8d0ae26 /templates/navbar.html | |
parent | fa0c4f8837bd3270a739ce5d7b4b82473ea67268 (diff) |
add navbar
Diffstat (limited to 'templates/navbar.html')
-rw-r--r-- | templates/navbar.html | 17 |
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> |