summaryrefslogtreecommitdiffstats
path: root/templates/project.html
blob: 2246296289049d524dd4875ab7bbb86e084230ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends "default.html" %}
{% block content %}
<h1>{{ page.title }}</h1>
{{ page.content }}
{% if page.source or page.ml or page.aur %}<hr />
<dl>
{% if page.source %}<dt>Source</dt>
  <dd><a href="{{ page.source }}">{{ page.source }}</a></dd>{% endif %}
{% if page.ml %}<dt>Mailing list</dt>
  <dd><a href="mailto:{{ page.ml }}@the-tk.com">{{ page.ml }}@the-tk.com</a>
  (<a href="https://the-tk.com/archive/{{ page.ml }}/">archive</a>)</dd>{% endif %}
{% if page.aur %}<dt>AUR</dt>
<dd><a href="https://aur.archlinux.org/packages/{{ page.aur }}">{{ page.aur }}</a></dd>{% endif %}
</dl>
{% endif %}</article>
{% endblock %}