mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-22 15:21:01 +00:00
10 lines
218 B
HTML
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 %}
|