mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-06 15:39:38 +00:00
15 lines
370 B
HTML
15 lines
370 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Welcome{% endblock %}
|
|
|
|
|
|
{% block content %}
|
|
<div class="about">
|
|
<img class="banner" src="{{ config.site_banner }}">
|
|
{{ config.site_about|safe|linebreaks }}
|
|
</div>
|
|
<h2>People</h2>
|
|
{% for identity in identities %}
|
|
{% include "activities/_identity.html" %}
|
|
{% endfor %}
|
|
{% endblock %}
|