summaryrefslogtreecommitdiffstats
path: root/templates/index.html
blob: 79f81cf848a7c6e81ee56c9654758892392e9fea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% 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 %}