You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<nav class="navigation">
|
|
|
|
<ul>
|
|
|
|
<li><a href="{{ url_for('home') }}">Home</a></li>
|
|
|
|
<li><a href="{{ url_for('show_books') }}">Catalogue</a></li>
|
|
|
|
<li><a href="{{ url_for('show_stacks') }}">Stacks</a></li>
|
|
|
|
{%if light%}
|
|
|
|
{%else%}
|
|
|
|
<li><a href="{{ url_for('add_book') }}">Add Book</a></li>
|
|
|
|
<li><a href="{{ url_for ('add_stack') }}">Add Stack</a></li>
|
|
|
|
{%endif%}
|
|
|
|
<li><a href="{{ url_for('annotations') }}">Annotations</a></li>
|
|
|
|
<li><a href="{{ url_for('about') }}">About</a></li>
|
|
|
|
{%if light%}
|
|
|
|
{%else%}
|
|
|
|
<li><a href="{{ url_for('show_instances') }}">Instances</a></li>
|
|
|
|
{%endif%}
|
|
|
|
</ul>
|
|
|
|
<div class="clearfix"></div>
|
|
|
|
</nav>
|