gnu-social/plugins/NoteTypeFeedFilter/templates/NoteTypeFeedFilter/tabs.html.twig

9 lines
311 B
Twig

{% for tab in tabs %}
<li>
<a href="{{ tab.url }}" title="{{ tab.active ? ('Hide ' ~ tab['icon']) : ('Show ' ~ tab['icon']) | trans }}">
{{ tab['icon'] }}
<span class="icon {{ tab.active ? 'icon-eye-opened' : 'icon-eye-closed' }}"></span>
</a>
</li>
{% endfor %}