pyfedi/app/templates/_home_nav.html

11 lines
508 B
HTML
Raw Normal View History

2024-01-03 20:14:39 +13:00
<div class="btn-group mt-1 mb-2">
2024-01-12 17:15:08 +13:00
<a href="/{{ type }}/hot" class="btn {{ 'btn-primary' if sort == 'hot' else 'btn-outline-secondary' }}" rel="nofollow">
2024-01-03 20:14:39 +13:00
{{ _('Hot') }}
</a>
2024-01-12 17:15:08 +13:00
<a href="/{{ type }}/top" class="btn {{ 'btn-primary' if sort == 'top' else 'btn-outline-secondary' }}" rel="nofollow">
2024-01-03 20:14:39 +13:00
{{ _('Top') }}
</a>
2024-01-12 17:15:08 +13:00
<a href="/{{ type }}/new" class="btn {{ 'btn-primary' if sort == 'new' else 'btn-outline-secondary' }}" rel="nofollow">
2024-01-03 20:14:39 +13:00
{{ _('New') }}
</a>
</div>