comlib/templates/nav.html

12 lines
392 B
HTML

<nav>
<ul class="nav navbar-nav">
<li{% if this._path == '/' %} class="active"{% endif%}><a href="{{ '/'|url }}">Home</a></li>
{% for href, title in [
['/epubs', 'Epubs'],
] %}
<li{% if this.is_child_of(href) %} class="active"{% endif
%}><a href="{{ href|url }}">{{ title }}</a></li>
{% endfor %}
</ul>
</nav>