From a4e01da27c08e43a67b2618ad1e71c1f8f86d5cd Mon Sep 17 00:00:00 2001 From: Biswakalyan Bhuyan Date: Thu, 19 Sep 2024 15:33:11 +0530 Subject: youtube fronend --- youtube/templates/base.html | 179 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 179 insertions(+) create mode 100644 youtube/templates/base.html (limited to 'youtube/templates/base.html') diff --git a/youtube/templates/base.html b/youtube/templates/base.html new file mode 100644 index 0000000..393cc52 --- /dev/null +++ b/youtube/templates/base.html @@ -0,0 +1,179 @@ +{% if settings.app_public %} + {% set app_url = settings.app_url|string %} +{% else %} + {% set app_url = settings.app_url|string + ':' + settings.port_number|string %} +{% endif %} + + + + + + + {{ page_title }} + + + + + + {% block style %} + {{ style }} + {% endblock %} + + {% if js_data %} + + {% endif %} + + + +
+ + + + {% if header_playlist_names is defined %} +
+ + + {% for playlist_name in header_playlist_names %} + + {% endfor %} + + +
+ +
+
+ + {% endif %} + +
+
+ + {% block main %} + {{ main }} + {% endblock %} + +
+ + + + -- cgit v1.2.3-59-g8ed1b