pecha.red/templates/contact.html

16 lines
390 B
HTML

{% extends 'base.html' %}
{% block title %}contact{% endblock %}
{% block content %}
<main>
<h1>Contact</h1>
{% for heading, entries in data.items() %}
<h2>{{ heading }}</h2>
<ul>
{% for entry in entries %}
<li>{% if entry[1] %}<a href='{{ entry[1] }}'>{% endif %}{{ entry[0] }}{% if entry[1] %}</a>{% endif %}</li>
{% endfor %}
</ul>
{% endfor %}
</main>
{% endblock %}