pecha.red/templates/contact.html

16 lines
390 B
HTML
Raw Normal View History

2020-04-12 09:37:27 +00:00
{% extends 'base.html' %}
2020-04-13 17:23:52 +00:00
{% block title %}contact{% endblock %}
2020-04-12 09:37:27 +00:00
{% 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 %}