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