about summary refs log tree commit diff stats
path: root/layouts/_default/single.html
blob: fb048a2d12c3d4ac3adf01bbc3419234ef702bd1 (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
36
37
{{ 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 }}