From 62b3afeeedfe054345f86093e2d243e956c1e3c9 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Wed, 26 Feb 2020 11:27:31 +0100 Subject: The project is now using Poetry. --- src/web/templates/layout.html | 155 ------------------------------------------ 1 file changed, 155 deletions(-) delete mode 100644 src/web/templates/layout.html (limited to 'src/web/templates/layout.html') diff --git a/src/web/templates/layout.html b/src/web/templates/layout.html deleted file mode 100644 index 29d4470f..00000000 --- a/src/web/templates/layout.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - {% block head %} - - - - - Newspipe{% if head_titles %} - {{ ' - '.join(head_titles) }}{% endif %} - - - - - - - - - - - - {% endblock %} - - - {% block menu %} - - {% endblock %} -
- -
- {% block messages %} - {% with messages = get_flashed_messages(with_categories=true) %} - {% if messages %} - {% for category, message in messages %} -
- - {{ message }} -
- {% endfor %} - {% endif %} - {% endwith %} - {% endblock %} -
- - {% block content %}{% endblock %} - - - - - - -- cgit