From 9297781c79dbfe68a817474d0395001fd9746770 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yaroslav=20de=20la=20Pe=C3=B1a=20Smirnov?= Date: Thu, 16 Dec 2021 02:04:43 +0300 Subject: Added basic builtin templates and css --- assets/templates/image.html | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 assets/templates/image.html (limited to 'assets/templates/image.html') diff --git a/assets/templates/image.html b/assets/templates/image.html new file mode 100644 index 0000000..8f7dd11 --- /dev/null +++ b/assets/templates/image.html @@ -0,0 +1,31 @@ +{% extends "base.html" %} +{% block content %} +
+ +
+ {% if image.prev %} + ⮜ Previous + {% else %} + + {% endif %} + {% if image.next %} + Next ⮞ + {% else %} + + {% endif %} +
+
+ +{% endblock %} + -- cgit v1.2.3