From d03c91d1afad642d7d4ab4677f3a95bc5307abdb Mon Sep 17 00:00:00 2001 From: root Date: Mon, 21 Sep 2020 18:40:52 +0100 Subject: [PATCH] fucker --- app/templates/base.html.j2 | 19 +++++++++++++++++++ app/templates/index.html.j2 | 16 ++++++++++++++++ app/templates/navigation-bar.html.j2 | 13 +++++++++++++ 3 files changed, 48 insertions(+) create mode 100644 app/templates/base.html.j2 create mode 100644 app/templates/index.html.j2 create mode 100644 app/templates/navigation-bar.html.j2 diff --git a/app/templates/base.html.j2 b/app/templates/base.html.j2 new file mode 100644 index 0000000..c8d4e26 --- /dev/null +++ b/app/templates/base.html.j2 @@ -0,0 +1,19 @@ + + + + + + + + + + + YouTube-DL-fe :: {% block title %}{% endblock %} + + {% block head_more %}{% endblock %} + + + {% include "navigation-bar.html.j2" %} + {% block page_body %}{% endblock %} + + \ No newline at end of file diff --git a/app/templates/index.html.j2 b/app/templates/index.html.j2 new file mode 100644 index 0000000..fe2fee6 --- /dev/null +++ b/app/templates/index.html.j2 @@ -0,0 +1,16 @@ +{% extends 'base.html.j2' %} + +{% block title %}Home{% endblock %} +{% block head_more %} +{% endblock %} +{% block page_body %} +
+
+
+
+

+ +
+
+
+{% endblock %} \ No newline at end of file diff --git a/app/templates/navigation-bar.html.j2 b/app/templates/navigation-bar.html.j2 new file mode 100644 index 0000000..227e62e --- /dev/null +++ b/app/templates/navigation-bar.html.j2 @@ -0,0 +1,13 @@ +{% block nav %} + +{% endblock %} \ No newline at end of file