diff options
author | BonfaceKilz | 2020-11-04 17:49:11 +0300 |
---|---|---|
committer | BonfaceKilz | 2020-11-04 17:49:11 +0300 |
commit | 922be125592001f0e616351adcc05f1dbb16b38b (patch) | |
tree | 60acc25860799cf0fd3e864cf5a81f9fa1402dba /wqflask | |
parent | 5899240349f6a943dc4dc1093ffbec08646c0376 (diff) | |
download | genenetwork2-922be125592001f0e616351adcc05f1dbb16b38b.tar.gz |
Wrap rendered content in div container
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/wqflask/templates/glossary.html | 6 |
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 %} |