aboutsummaryrefslogtreecommitdiff
path: root/wqflask
diff options
context:
space:
mode:
authorBonfaceKilz2020-11-04 17:49:11 +0300
committerBonfaceKilz2020-11-04 17:49:11 +0300
commit922be125592001f0e616351adcc05f1dbb16b38b (patch)
tree60acc25860799cf0fd3e864cf5a81f9fa1402dba /wqflask
parent5899240349f6a943dc4dc1093ffbec08646c0376 (diff)
downloadgenenetwork2-922be125592001f0e616351adcc05f1dbb16b38b.tar.gz
Wrap rendered content in div container
Diffstat (limited to 'wqflask')
-rw-r--r--wqflask/wqflask/templates/glossary.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/wqflask/wqflask/templates/glossary.html b/wqflask/wqflask/templates/glossary.html
index 718baf13..ed6f6ff7 100644
--- a/wqflask/wqflask/templates/glossary.html
+++ b/wqflask/wqflask/templates/glossary.html
@@ -3,7 +3,7 @@
{% block title %}Glossary{% endblock %}
{% block content %}
-
-{{ rendered_markdown|safe }}
-
+<div class="container">
+ {{ rendered_markdown|safe }}
+</div>
{% endblock %}