diff options
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"}} |
