summaryrefslogtreecommitdiff
path: root/templates/navbar.html
blob: 914f2e98667d15eaf1fbe27cbced6b46959e077c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<div class="navbar-fixed">
	<nav style="color: #ffffff; background-color: #001f8f;">
		<div class="container">
			{% if nav_link %}
				<a class="main" href="{{ nav_link }}">{{ title }}
					<span><i class="material-icons" id="syncfailedmarker" style="display: none;">sync_problem</i></span></a>
			{% else %}
				<span class="main">{{ title }}
					<span><i class="material-icons" id="syncfailedmarker" style="display: none;">sync_problem</i></span></span>
			{% endif %}
			<ul id="nav-mobile" style="float: right;">
				<li><a href="/"><i class="material-icons" aria-label="Stationen in der Umgebung suchen">my_location</i></a></li>
			</ul>
		</div>
	</nav>
</div>