takahe/templates/activities/_home_menu.html

7 lines
409 B
HTML
Raw Normal View History

2022-11-13 23:14:38 +00:00
<nav>
<a href="/" {% if current_page == "home" %}class="selected"{% endif %}>Home</a>
2022-11-14 01:42:47 +00:00
<a href="/notifications/" {% if current_page == "notifications" %}class="selected"{% endif %}>Notifications</a>
<a href="/local/" {% if current_page == "local" %}class="selected"{% endif %}>Local</a>
2022-11-13 23:14:38 +00:00
<a href="/federated/" {% if current_page == "federated" %}class="selected"{% endif %}>Federated</a>
</nav>