takahe/templates/index.html

16 lines
370 B
HTML
Raw Normal View History

2022-11-05 13:17:27 -07:00
{% extends "base.html" %}
{% block title %}Welcome{% endblock %}
2022-11-13 15:14:38 -08:00
{% block content %}
<div class="about">
<img class="banner" src="{{ config.site_banner }}">
{{ config.site_about|safe|linebreaks }}
</div>
<h2>People</h2>
2022-11-05 13:17:27 -07:00
{% for identity in identities %}
{% include "activities/_identity.html" %}
2022-11-05 13:17:27 -07:00
{% endfor %}
{% endblock %}