This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/resources/views/yuuno/info/contact.twig

27 lines
789 B
Twig
Raw Normal View History

2016-07-31 01:32:37 +00:00
{% extends 'info/master.twig' %}
{% set title = 'Contact' %}
{% block info %}
<h1>Contact</h1>
<p>Need to contact us? Here's a few ways to do so! We try to respond as soon as possible.</p>
<h3>E-mail</h3>
<ul>
{% for user, email in contact.mail %}
<li>{{ user }} - <a href="mailto:{{ email }}">{{ email }}</a></li>
{% endfor %}
</ul>
<h3>Twitter</h3>
<ul>
{% for handle, comment in contact.twit %}
<li>@<a href="https://twitter.com/{{ handle }}">{{ handle }}</a> - {{ comment }}</li>
{% endfor %}
</ul>
<h3>Repositories</h3>
<ul>
{% for link, name in contact.repo %}
<li><a href="{{ link }}">{{ link }}</a> - {{ name }}</li>
{% endfor %}
</ul>
{% endblock %}