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