From da15e439e64c8314825ad5f28073fbcbd436946f Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Thu, 30 May 2019 13:29:31 +0100 Subject: Initial version of demo This commit introduces the demo functionality. The task assignment has been removed at the moment, as this will be changed in a future commit. --- app/templates/base.html | 35 +++++++++++++++-------------------- 1 file changed, 15 insertions(+), 20 deletions(-) (limited to 'app/templates/base.html') diff --git a/app/templates/base.html b/app/templates/base.html index 8bc31dc..f11760a 100644 --- a/app/templates/base.html +++ b/app/templates/base.html @@ -2,12 +2,13 @@ {% import "bootstrap/utils.html" as util %} {% block styles %} -{{ super() }} + {{ super() }} + {% endblock %} {% block title %} - {% if title %}{{ title }} -- AnnotateChange{% else %}Welcome to AnnotateChange{% endif %} + {% if title %}{{ title }} · AnnotateChange{% else %}Welcome to AnnotateChange{% endif %} {% endblock %} {% block navbar %} @@ -28,13 +29,13 @@ @@ -44,19 +45,13 @@ {% block content %}
- - {{ util.flashed_messages(dismissible=True) }} - - {% block app_content %} - {% endblock %} + {{ util.flashed_messages(dismissible=True) }} + {% block app_content %} + {% endblock %}
{% endblock %} -- cgit v1.2.3