aboutsummaryrefslogtreecommitdiff
path: root/src/hydrilla/proxy/web_ui/templates/index.html.jinja
diff options
context:
space:
mode:
authorWojtek Kosior <koszko@koszko.org>2022-08-23 13:59:14 +0200
committerWojtek Kosior <koszko@koszko.org>2022-09-09 13:55:05 +0200
commit9326f832fe3bb5b77358170bd060dad1af98810d (patch)
tree94c89f6a9eb16591cc450bc048bf3509bb436f46 /src/hydrilla/proxy/web_ui/templates/index.html.jinja
parent7a64cce0443aba3eea62896ae8697a9ec2bb49eb (diff)
downloadhaketilo-hydrilla-9326f832fe3bb5b77358170bd060dad1af98810d.tar.gz
haketilo-hydrilla-9326f832fe3bb5b77358170bd060dad1af98810d.zip
arrange web UI Jinja templates into multiple directories
Diffstat (limited to 'src/hydrilla/proxy/web_ui/templates/index.html.jinja')
-rw-r--r--src/hydrilla/proxy/web_ui/templates/index.html.jinja26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/hydrilla/proxy/web_ui/templates/index.html.jinja b/src/hydrilla/proxy/web_ui/templates/index.html.jinja
new file mode 100644
index 0000000..62c2b45
--- /dev/null
+++ b/src/hydrilla/proxy/web_ui/templates/index.html.jinja
@@ -0,0 +1,26 @@
+{#
+SPDX-License-Identifier: GPL-3.0-or-later OR CC-BY-SA-4.0
+
+
+Proxy web UI root page.
+
+This file is part of Hydrilla&Haketilo.
+
+Copyright (C) 2022 Wojtek Kosior
+
+Dual licensed under
+* GNU General Public License v3.0 or later and
+* Creative Commons Attribution Share Alike 4.0 International.
+
+You can choose to use either of these licenses or both.
+
+
+I, Wojtek Kosior, thereby promise not to sue for violation of this
+file's licenses. Although I request that you do not make use this code
+in a proprietary work, I am not going to enforce this in court.
+#}
+{%- extends "base.html.jinja" %}
+{% block title %} {{ _('web_ui.home.title') }} {% endblock %}
+{% block main %}
+ {{ _('web_ui.home.welcome_to_haketilo') }}
+{% endblock %}