blob: d5d177461bf7b2afc478b2e7e2a0941dc180111a (
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
|
{{ define "main" -}}
<article class="post h-entry">
<header>
<a class="u-url" href="{{ .Permalink | replaceRE "/$" "" }}">
<h1 class="post-title p-name">{{ .Title }}</h1>
</a>
<time class="post-date dt-published" datetime="{{ .Date.Format "2006-01-02T15:04:05Z" }}">{{ .Date.Format "Monday, 2 January 2006" }}</time>
</header>
<main class="post-content e-content">
{{ .Content }}
</main>
<footer class="footer">
{{- if .Params.categories }}
<span>
Category:
{{- range .Params.categories }}
<a class="p-category" href="/categories/{{ . | lower | urlize }}/">{{ . }}</a>
{{- end }}
</span>
{{- end }}
{{- if .Params.tags }}
<p>
Tags:
{{- range .Params.tags }}
<a class="p-category" href="/tags/{{ . | urlize }}/">{{ . }}</a>
{{- end }}
</p>
{{- end }}
</footer>
</article>
{{- if .Site.DisqusShortname }}
<h2>Comments</h2>
{{ template "_internal/disqus.html" . }}
{{- end }}
{{- end }}
|