diff options
-rw-r--r-- | wqflask/wqflask/templates/environment.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/wqflask/wqflask/templates/environment.html b/wqflask/wqflask/templates/environment.html new file mode 100644 index 00000000..a331d494 --- /dev/null +++ b/wqflask/wqflask/templates/environment.html @@ -0,0 +1,37 @@ +{% extends "base.html" %} + +{% block title %}Glossary{% endblock %} + +{% block css %} +<link rel="stylesheet" type="text/css" href="/static/new/css/markdown.css" /> +{% endblock %} + +{% block content %} + + <div class="github-btn"> + <a href="https://github.com/genenetwork/gn-docs">Edit on Github</a> + </div> +<div id="markdown" class="container"> + + <div class="cls-table-style">{{ rendered_markdown|safe }} </div> +</div> + +<style type="text/css"> +table { + width: 100%; + /*margin: auto;*/ +} +table, th, td { + border: 1px solid black; + +} + +td,th{ + padding-top:8px; + padding-bottom: 8px; + text-align: center; +} + + +</style> +{% endblock %} |