mirror of
https://codeberg.org/rimu/pyfedi
synced 2025-01-23 11:26:56 -08:00
14 lines
No EOL
948 B
HTML
14 lines
No EOL
948 B
HTML
<div class="btn-group mt-1 mb-2" aria-label="{{ _('Sorting methods: ') }}">
|
|
<a href="/home/hot/{{ view_filter }}" class="btn {{ 'btn-primary' if sort == 'hot' else 'btn-outline-secondary' }}" rel="nofollow noindex" title="{{ _('Trending now') }}">
|
|
{{ _('Hot') }}
|
|
</a>
|
|
<a href="/home/top/{{ view_filter }}" class="btn {{ 'btn-primary' if sort == 'top' else 'btn-outline-secondary' }}" rel="nofollow noindex" title="{{ _('Most upvotes in the last 24h') }}">
|
|
{{ _('Top') }}
|
|
</a>
|
|
<a href="/home/new/{{ view_filter }}" class="btn {{ 'btn-primary' if sort == 'new' else 'btn-outline-secondary' }}" rel="nofollow noindex" title="{{ _('Latest posts') }}">
|
|
{{ _('New') }}
|
|
</a>
|
|
<a href="/home/active/{{ view_filter }}" class="btn {{ 'btn-primary' if sort == 'active' else 'btn-outline-secondary' }}" rel="nofollow noindex" title="{{ _('Recently commented on') }}">
|
|
{{ _('Active') }}
|
|
</a>
|
|
</div> |