summaryrefslogtreecommitdiffstats
path: root/templates/index.html
blob: 9e09a436ef7f3f89b3aa6711effb58790248c98d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% 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 %}