takahe/templates/index.html

14 lines
286 B
HTML
Raw Normal View History

2022-11-05 20:17:27 +00:00
{% extends "base.html" %}
{% block title %}Welcome{% endblock %}
{% block content %}
2022-11-13 23:14:38 +00:00
<nav>
<a href="/" class="selected">Home</a>
</nav>
2022-11-05 20:17:27 +00:00
{% for identity in identities %}
<a href="{{ identity.urls.view }}">{{ identity }}</a>
{% endfor %}
{% endblock %}