blob: 57895ef686448285281acb4ddef0eec3c5f84b07 (
plain) (
blame)
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
|
{{ define "main" }}
<style type="text/css" media="screen">
li {
margin-bottom: 1.2em;
}
</style>
<h2 class="title">{{ .Title }}</h2>
{{ .Date.Format "Monday, 2 January 2006" }}
{{ .Content }}
{{ if .Params.tags }}
<div style="background-color: rgb(240, 240, 240);">
This post is tagged with:
{{ range .Params.tags }}
<a href="{{ "tags" | absURL }}/{{ . | urlize }}">{{ . }}</a>
{{ end }}
{{ else }}
<div style="background-color: rgb(240, 240, 240); margin-top: 20px;">
This post is untagged.
</div>
{{ end }}
</div>
{{ end }}
|