aboutsummaryrefslogtreecommitdiff
path: root/src/hydrilla/proxy/web_ui/templates/index.html.jinja
diff options
context:
space:
mode:
authorWojtek Kosior <koszko@koszko.org>2022-09-05 13:58:34 +0200
committerWojtek Kosior <koszko@koszko.org>2022-09-09 13:55:05 +0200
commit2ef6e8c3177aeedb25258171133ef1cf8720f8f0 (patch)
tree854b65b0bd3a34d980b82fc120a466d54d9fba81 /src/hydrilla/proxy/web_ui/templates/index.html.jinja
parent6f6b40823b1e517149e238576fc8c210341f376f (diff)
downloadhaketilo-hydrilla-2ef6e8c3177aeedb25258171133ef1cf8720f8f0.tar.gz
haketilo-hydrilla-2ef6e8c3177aeedb25258171133ef1cf8720f8f0.zip
[proxy] complete the text content and styling of web UI pages written so far
Diffstat (limited to 'src/hydrilla/proxy/web_ui/templates/index.html.jinja')
-rw-r--r--src/hydrilla/proxy/web_ui/templates/index.html.jinja20
1 files changed, 19 insertions, 1 deletions
diff --git a/src/hydrilla/proxy/web_ui/templates/index.html.jinja b/src/hydrilla/proxy/web_ui/templates/index.html.jinja
index 8fd2ead..725e30e 100644
--- a/src/hydrilla/proxy/web_ui/templates/index.html.jinja
+++ b/src/hydrilla/proxy/web_ui/templates/index.html.jinja
@@ -19,7 +19,25 @@ 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') }}
+ <h3>
+ {{ _('web_ui.home.heading.welcome_to_haketilo') }}
+ </h3>
+
+ <p>
+ {{ _('web_ui.home.this_is_haketilo_page') }}
+ </p>
+
+ <div class="horizontal-separator"></div>
+
+ <h4>
+ {{ _('web_ui.home.heading.about_haketilo') }}
+ </h4>
+
+ <p>
+ {{ _('web_ui.home.haketilo_is_blah_blah') }}
+ </p>
{% endblock %}