takahe/templates/index.html

16 wiersze
342 B
HTML
Czysty Zwykły widok Historia

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