aboutsummaryrefslogtreecommitdiff
path: root/wqflask
diff options
context:
space:
mode:
authorAlexander Kabui2020-11-26 17:09:43 +0300
committerAlexander Kabui2020-11-26 17:09:43 +0300
commit8a0e79d3186e340bc438dd07b4c2992f81c3e6d7 (patch)
tree51c2f41d24c95157530db52b7b2483eea0402093 /wqflask
parentc58751a8aa7ab0277096d91bb3e50c3ef0d62aab (diff)
downloadgenenetwork2-8a0e79d3186e340bc438dd07b4c2992f81c3e6d7.tar.gz
add environment markdown
Diffstat (limited to 'wqflask')
-rw-r--r--wqflask/wqflask/templates/environment.html37
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 %}