2024-08-15 18:42:29 -07:00
< 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') }}" >
2024-01-02 23:14:39 -08:00
{{ _('Hot') }}
< / a >
2024-08-15 18:42:29 -07:00
< 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') }}" >
2024-01-02 23:14:39 -08:00
{{ _('Top') }}
< / a >
2024-08-15 18:42:29 -07:00
< a href = "/home/new/{{ view_filter }}" class = "btn {{ 'btn-primary' if sort == 'new' else 'btn-outline-secondary' }}" rel = "nofollow noindex" title = "{{ _('Latest posts') }}" >
2024-01-02 23:14:39 -08:00
{{ _('New') }}
< / a >
2024-08-15 18:42:29 -07:00
< a href = "/home/active/{{ view_filter }}" class = "btn {{ 'btn-primary' if sort == 'active' else 'btn-outline-secondary' }}" rel = "nofollow noindex" title = "{{ _('Recently commented on') }}" >
2024-01-14 21:26:22 -08:00
{{ _('Active') }}
< / a >
2024-01-02 23:14:39 -08:00
< / div >