2024-08-16 13:42:29 +12: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-03 20:14:39 +13:00
{{ _('Hot') }}
< / a >
2024-08-16 13:42:29 +12: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-03 20:14:39 +13:00
{{ _('Top') }}
< / a >
2024-08-16 13:42:29 +12: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-03 20:14:39 +13:00
{{ _('New') }}
< / a >
2024-08-16 13:42:29 +12: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-15 18:26:22 +13:00
{{ _('Active') }}
< / a >
2024-01-03 20:14:39 +13:00
< / div >