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-12-05 19:24:46 -07:00

16 lines
342 B
HTML

{% extends "base.html" %}
{% block title %}Welcome{% endblock %}
{% block content %}
<div class="about">
<img class="banner" src="{{ config.site_banner }}">
{{ about }}
</div>
<h2>People</h2>
{% for identity in identities %}
{% include "activities/_identity.html" %}
{% endfor %}
{% endblock %}