summaryrefslogtreecommitdiffstats
path: root/web/templates/docs.html
diff options
context:
space:
mode:
authorFlorian Orben <florian.orben@gmail.com>2015-11-12 00:23:00 +0100
committerFlorian Orben <florian.orben@gmail.com>2015-11-17 18:55:20 +0100
commite9a8bcd727e1bfbd98dc1955d1c574b76e9a4ad1 (patch)
tree2ff1009f12f5104940bf5f8d7377f3afbab7dae8 /web/templates/docs.html
parent1d7c44919237f424cfd65157cc08bff42753fd0f (diff)
downloadchat-e9a8bcd727e1bfbd98dc1955d1c574b76e9a4ad1.tar.gz
chat-e9a8bcd727e1bfbd98dc1955d1c574b76e9a4ad1.tar.bz2
chat-e9a8bcd727e1bfbd98dc1955d1c574b76e9a4ad1.zip
PLT-327: Add help text for Markdown
Diffstat (limited to 'web/templates/docs.html')
-rw-r--r--web/templates/docs.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/web/templates/docs.html b/web/templates/docs.html
new file mode 100644
index 000000000..21659e810
--- /dev/null
+++ b/web/templates/docs.html
@@ -0,0 +1,24 @@
+{{define "docs"}}
+<!DOCTYPE html>
+<html>
+{{template "head" . }}
+<body class="white">
+<div class="container-fluid">
+ <div class="inner__wrap">
+ <div class="row content">
+ <div class="col-sm-12">
+ <div id="docs"></div>
+ </div>
+ <div class="footer-push"></div>
+ </div>
+ <div class="row footer">
+ {{template "footer" . }}
+ </div>
+ </div>
+</div>
+<script>
+ window.setup_documentation_page({{ .Props }});
+</script>
+</body>
+</html>
+{{end}}