From 5716bfd7548e386b12703e76cdf273bce839116c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yaroslav=20de=20la=20Pe=C3=B1a=20Smirnov?= Date: Fri, 12 Mar 2021 18:44:41 +0300 Subject: Initial commit Essential functional website. --- templates/base.html | 69 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 templates/base.html (limited to 'templates/base.html') diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..43bf603 --- /dev/null +++ b/templates/base.html @@ -0,0 +1,69 @@ +{% if lang != "en" %} +{% set url_prefix = "/" ~ lang ~ "/" %} +{% else %} +{% set url_prefix = "/" %} +{% endif %} + + + + + + {% block title %}{{ config.title }}{% endblock %} + + + +
+ +
+ {% block h1title %} + {% endblock %} +
+ +
+
+ {% block body %} + {% endblock %} +
+ + + -- cgit v1.2.3