15 lines
387 B
HTML
15 lines
387 B
HTML
{% extends 'base.html' %}
|
|
{% block title %}home{% 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 %}
|