blob: 52e9c131643dc6e09dec2cd58e252534df44a3ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{{ define "head" }}
<link rel="stylesheet" href='{{ "css/single.css" | absURL }}'>
{{ end }}
{{ define "main" }}
<main id="main" class="post">
<h1>{{ .Title }}</h1>
<div><i>{{ .PublishDate.Format "January 2, 2006"}}</i></div>
<article class="content">
{{ .Content }}
</article>
{{ if ne .Params.tags nil }}
<div>
<b>Keywords: </b>
{{ range .Params.tags }}
<a class="link" href='{{ "tags" | absURL }}/{{ . | urlize }}'>#{{ . }}</a>
{{ end }}
</div>
{{ end }}
</main>
{{ end }}
|