This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
takahe/templates/index.html
2022-11-05 14:17:27 -06:00

10 lines
218 B
HTML

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