diff options
| author | horus_arch | 2015-05-08 01:46:18 +0200 |
|---|---|---|
| committer | horus_arch | 2015-05-08 01:46:18 +0200 |
| commit | fb7050acf2545c9d222d2c014460e4fcad5cc462 (patch) | |
| tree | 942e1afa24dca916d8c003fb0a763424a93a2110 /templates/view.html | |
| download | scribbled-fb7050acf2545c9d222d2c014460e4fcad5cc462.tar.gz | |
Initial commit.
Diffstat (limited to 'templates/view.html')
| -rw-r--r-- | templates/view.html | 21 |
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"}} |
