pyfedi/app/templates/_home_nav.html

11 lines
496 B
HTML
Raw Normal View History

2024-01-03 20:14:39 +13:00
<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>