summaryrefslogtreecommitdiff
path: root/templates/view.html
blob: 2ebeef997af9ebf84cd55518291b73611ad66b01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{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">
			{{if ne .Title "Help Page"}}
			<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>
			{{end}}
			<h1>{{.Title}}</h1>
			<hr>
				{{RenderMarkdown .Post}}
			</div>
		</div>
	</div>
</div>

{{template "footer.html"}}