summaryrefslogtreecommitdiffstats
path: root/templates/project.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/project.html')
-rw-r--r--templates/project.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/project.html b/templates/project.html
new file mode 100644
index 0000000..15e4d9a
--- /dev/null
+++ b/templates/project.html
@@ -0,0 +1,16 @@
+{% extends "default.html" %}
+{% block content %}
+<h1>{{ page.title }}</h1>
+{{ page.content }}
+{% if page.source or page.ml %}<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 %}