~dricottone/blog

ref: a2e17205ba4a9a262d36bc81879f5edb2da2af8b blog/layouts/posts/single.html -rw-r--r-- 526 bytes
a2e17205Dominic Ricottone Integrating latest version of gallery/image shortcodes 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{{ define "main" }}
<article>
  <h1>{{ .Title }}</h1>
  <p><b>Date:</b> {{ .Date.Format "Mon 2006-01-02" }}</p>
  <p><b>Permalink:</b> <a href="{{ .Permalink }}">{{ .Permalink }}</a></p>

  <br />
  <div class="post">
    {{ .Content }}
  </div>
</article>

<br />
<div>
  {{ with .PrevInSection }}
    <p><b>Previous article:</b> <a href="{{ .Permalink }}">{{ .Title }}</a></p>
  {{ end }}
  {{ with .NextInSection }}
    <p><b>Next article:</b> <a href="{{ .Permalink }}">{{ .Title }}</a></p>
  {{ end }}
</div>

{{ end }}