2017-09-13 19:15:18 +02:00
|
|
|
{% set navigation_bar = [
|
|
|
|
('index.html', 'Reudnetz - Internet für Leipzigs Osten', 'Wilkommen'),
|
|
|
|
('was.html', 'Was genau verkauft Reudnetz', 'Was'),
|
|
|
|
('wie.html', 'Wie funktioniert das?', 'Wie'),
|
|
|
|
('wer.html', 'Wer ist Reudnetz', 'Wer'),
|
2017-09-26 19:48:07 +02:00
|
|
|
('warum.html', 'Warum gibt es Reudnetz', 'Warum'),
|
|
|
|
('kaputt.html', 'Wenns mal nicht mehr geht', 'Kaputt?')
|
2017-09-13 19:15:18 +02:00
|
|
|
] -%}
|
|
|
|
<div class="row nav">
|
|
|
|
<div class="fg12">
|
|
|
|
<ul>
|
|
|
|
{% for href, title, caption in navigation_bar %}
|
|
|
|
<li{% if name == href %} class="current"{% endif %}>
|
|
|
|
<a href="{{ href }}" title="{{ title }}">{{ caption }}</a>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|