mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-18 15:41:12 +00:00
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 %}
|
|
|