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