takahe/templates/index.html
Andrew Godwin 34b24a0dcb More UI!
2022-11-13 16:15:14 -07:00

13 lines
286 B
HTML

{% extends "base.html" %}
{% block title %}Welcome{% endblock %}
{% block content %}
<nav>
<a href="/" class="selected">Home</a>
</nav>
{% for identity in identities %}
<a href="{{ identity.urls.view }}">{{ identity }}</a>
{% endfor %}
{% endblock %}