bookwyrm/fedireads/templates/snippets/tabs.html

9 lines
200 B
HTML
Raw Normal View History

<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>