mirror of
https://codeberg.org/rimu/pyfedi
synced 2025-01-24 03:43:42 -08:00
17 lines
No EOL
824 B
HTML
17 lines
No EOL
824 B
HTML
<div class="mobile_create_post d-md-none mt-1">
|
|
<a class="btn btn-primary" href="/community/{{ community.link() }}/submit">{{ _('Create post') }}</a>
|
|
</div>
|
|
<div class="btn-group mt-1 mb-2">
|
|
<a href="?sort=hot" class="btn {{ 'btn-primary' if sort == '' or sort == 'hot' else 'btn-outline-secondary' }}" rel="nofollow">
|
|
{{ _('Hot') }}
|
|
</a>
|
|
<a href="?sort=top" class="btn {{ 'btn-primary' if sort == 'top' else 'btn-outline-secondary' }}" rel="nofollow">
|
|
{{ _('Top') }}
|
|
</a>
|
|
<a href="?sort=new" class="btn {{ 'btn-primary' if sort == 'new' else 'btn-outline-secondary' }}" rel="nofollow">
|
|
{{ _('New') }}
|
|
</a>
|
|
<a href="?sort=active" class="btn {{ 'btn-primary' if sort == 'active' else 'btn-outline-secondary' }}" rel="nofollow">
|
|
{{ _('Active') }}
|
|
</a>
|
|
</div> |