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

16 lines
342 B
HTML
Raw Normal View History

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