summaryrefslogtreecommitdiffstats
path: root/templates/index.html
blob: 72dcf84c5fee8393a477e0c11b9b2c6d4cfdde24 (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 }}">
        {{ about }}
    </div>
    <h2>People</h2>
    {% for identity in identities %}
        {% include "activities/_identity.html" %}
    {% endfor %}
{% endblock %}