From b36f9c05071ea549ed59e703270fcf223b60df03 Mon Sep 17 00:00:00 2001 From: Jon Bergli Heier Date: Sun, 9 Apr 2017 09:02:09 +0200 Subject: Major rewrite to use jab/oauth. Highlights: - Uses the oauth branch of jab. - Changed design to use bootstrap. - Some minor changes to functionality in file uploading and listing. - API is currently disabled and incomplete. --- fbin/templates/base.html | 70 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 fbin/templates/base.html (limited to 'fbin/templates/base.html') diff --git a/fbin/templates/base.html b/fbin/templates/base.html new file mode 100644 index 0000000..bab0f7b --- /dev/null +++ b/fbin/templates/base.html @@ -0,0 +1,70 @@ + + + + + + + {{ config.SITE_NAME }}{% if title %} — {{ title }}{% endif %} + + +{% block head %} +{% endblock %} + + + +
+{% if title %} + +{% endif %} +{% with messages = get_flashed_messages(with_categories = True) %} +{% for category, message in messages %} + +{% endfor %} +{% endwith %} +{% block content %} +{% endblock %} +
+ + + + +{% block scripts %} +{% endblock %} + + -- cgit v1.2.3