Changes to content

Removed some stale screens.
This commit is contained in:
Stephan 2019-03-31 20:49:00 +02:00
parent 6095870ce3
commit 50a1a6d925
4 changed files with 60 additions and 352 deletions

View file

@ -1,10 +0,0 @@
<!-- nav.main.macro -->
{% macro main(data, active='') %}
<nav>
<ul>
{% for link in data %}
<li{%if active == link.text %} class="active_txt"{% endif %}>{%if active == link.text %}{{ link.text }}{%else%}<a href="{{ link.href }}">{{ link.text }}</a>{% endif %}</li>
{% endfor %}
</ul>
</nav>
{% endmacro %}