mirror of
https://codeberg.org/rimu/pyfedi
synced 2025-01-24 03:43:42 -08:00
14 lines
No EOL
673 B
HTML
14 lines
No EOL
673 B
HTML
<div class="btn-group mt-1 mb-2">
|
|
<a href="/{{ type }}/hot" class="btn {{ 'btn-primary' if sort == 'hot' else 'btn-outline-secondary' }}" rel="nofollow">
|
|
{{ _('Hot') }}
|
|
</a>
|
|
<a href="/{{ type }}/top" class="btn {{ 'btn-primary' if sort == 'top' else 'btn-outline-secondary' }}" rel="nofollow">
|
|
{{ _('Top') }}
|
|
</a>
|
|
<a href="/{{ type }}/new" class="btn {{ 'btn-primary' if sort == 'new' else 'btn-outline-secondary' }}" rel="nofollow">
|
|
{{ _('New') }}
|
|
</a>
|
|
<a href="/{{ type }}/active" class="btn {{ 'btn-primary' if sort == 'active' else 'btn-outline-secondary' }}" rel="nofollow">
|
|
{{ _('Active') }}
|
|
</a>
|
|
</div> |