diff options
Diffstat (limited to 'app/templates')
| -rw-r--r-- | app/templates/base.html | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/app/templates/base.html b/app/templates/base.html index 2bcb9e3..8bc31dc 100644 --- a/app/templates/base.html +++ b/app/templates/base.html @@ -1,6 +1,11 @@ {% extends 'bootstrap/base.html' %} {% import "bootstrap/utils.html" as util %} +{% block styles %} +{{ super() }} + <link rel="stylesheet" href="{{ url_for('static', filename='sticky_footer.css') }}"> +{% endblock %} + {% block title %} {% if title %}{{ title }} -- AnnotateChange{% else %}Welcome to AnnotateChange{% endif %} {% endblock %} @@ -38,11 +43,20 @@ {% endblock %} {% block content %} - <div class="container"> + <main class="container"> {{ util.flashed_messages(dismissible=True) }} {% block app_content %} {% endblock %} - </div> + </main> + <footer class="fixed-bottom"> + <div class="container"> + <span class="text-muted">This is AnnotateChange version {{ + config.APP_VERSION }}. For questions or comments, + please contact <a + href="mailto:gvandenburg@turing.ac.uk">Gertjan van den + Burg</a>.</span> + </div> + </footer> {% endblock %} |
