pyfedi/app/templates/_home_nav.html
2024-01-03 20:14:39 +13:00

11 lines
No EOL
496 B
HTML

<div class="btn-group mt-1 mb-2">
<a href="/" class="btn {{ 'btn-primary' if request.path == '/' else 'btn-outline-secondary' }}" rel="nofollow">
{{ _('Hot') }}
</a>
<a href="/top" class="btn {{ 'btn-primary' if request.path == '/top' else 'btn-outline-secondary' }}" rel="nofollow">
{{ _('Top') }}
</a>
<a href="/new" class="btn {{ 'btn-primary' if request.path == '/new' else 'btn-outline-secondary' }}" rel="nofollow">
{{ _('New') }}
</a>
</div>