aboutsummaryrefslogtreecommitdiff
path: root/templates/web/about.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/web/about.html')
-rw-r--r--templates/web/about.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/web/about.html b/templates/web/about.html
new file mode 100644
index 0000000..c4eb73b
--- /dev/null
+++ b/templates/web/about.html
@@ -0,0 +1,17 @@
+{% extends "base.html" %}
+
+{% block title %}{{ settings.name }}{% endblock %}
+
+{% block content %}
+ <header>
+ <h1>{{ settings.name }}</h1>
+ <nav><a href="{{ url_for('index') }}">home</a></nav>
+ </header>
+ {% if readme %}
+ {{ readme | safe }}
+ {% else %}
+ This collection doesn't have a README.rst or README.txt file: maybe add
+ one?
+ {% endif %}
+{% endblock %}
+