summaryrefslogtreecommitdiff
path: root/templates/view.html
diff options
context:
space:
mode:
authorhorus_arch2015-05-08 01:46:18 +0200
committerhorus_arch2015-05-08 01:46:18 +0200
commitfb7050acf2545c9d222d2c014460e4fcad5cc462 (patch)
tree942e1afa24dca916d8c003fb0a763424a93a2110 /templates/view.html
downloadscribbled-fb7050acf2545c9d222d2c014460e4fcad5cc462.tar.gz
Initial commit.
Diffstat (limited to 'templates/view.html')
-rw-r--r--templates/view.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/templates/view.html b/templates/view.html
new file mode 100644
index 0000000..094caaa
--- /dev/null
+++ b/templates/view.html
@@ -0,0 +1,21 @@
+{{template "header.html" .}}
+<body class="grey">
+{{template "navbar.html" .}}
+
+<div class="container">
+ <div class="row">
+ <div class="col-md-offset-1 col-md-10">
+ <div class="playcard">
+ <div class="pull-right">
+ <a id="edit" href="{{.VirtualRoot}}/{{.Title}}" name="edit" class="text-right btn btn-success"><span class="glyphicon glyphicon-pencil"></span> Edit</a>
+
+ </div>
+ <h1>{{.Title}}</h1>
+ <hr>
+ {{RenderMarkdown .Post}}
+ </div>
+ </div>
+ </div>
+</div>
+
+{{template "footer.html"}}