diff options
Diffstat (limited to 'templates/web/about.html')
-rw-r--r-- | templates/web/about.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/web/about.html b/templates/web/about.html new file mode 100644 index 0000000..cfccb50 --- /dev/null +++ b/templates/web/about.html @@ -0,0 +1,13 @@ +{% extends "base.html" %} + + +{% block content %} +<article> + {% if readme %} + {{ readme | safe }} + {% else %} + This collection doesn't have a README.rst or README.txt file: + maybe add one? + {% endif %} +</article> +{% endblock %} |