blob: 05ecc53c7b1ca9a720c598578637675fc5d4cef6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{{ template "chrome/header.html" . }}
<body>
{{ template "chrome/navbar.html" . }}
<div class="container">
<div class="row">
<div class="col-md-9">
<div class="well well-sm">
<h3>{{ .Title }}<br> <small>{{ .Description }}</small></h3>
<hr>
{{ .Content }}
</div>
</div>
<!-- Sidebar -->
<div class="col-md-3">
<div class="well well-sm"> <!-- Post-specific stats -->
<h4>{{ .Date.Format "January 2, 2006" }}<br>
<small>{{ .WordCount }} words</small></h4>
<hr>
<strong>Categories</strong>
<ul class="list-unstyled">
{{ range .Params.categories }}
<li><a href="/categories/{{ . | urlize }}">{{ . }}</a></li>
{{ end }}
</ul>
<hr>
<strong>Tags</strong><br>
{{ range .Params.tags }}<a class="label label-default" href="/tags/{{ . | urlize }}">{{ . }}</a> {{ end }}
</div>
{{ template "chrome/menu.html" . }}
</div>
</div>
{{ template "chrome/footer.copyright.html" . }}
</div>
{{ template "chrome/footer.html" . }}
|