forked from mirrors/bookwyrm
8 lines
200 B
HTML
8 lines
200 B
HTML
<div class="tabs">
|
|
{% for tab in tabs %}
|
|
<div class="tab {% if tab == active_tab %}active{% endif %}">
|
|
<a href="{{ path }}/{{ tab }}">{{ tab }}</a>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|