~dricottone/blog

blog/layouts/posts/single.html -rw-r--r-- 803 bytes
eb40f8f6Dominic Ricottone RSS feeds 19 days 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
25
26
27
28
29
30
31
32
33
34
35
{{ define "main" }}
<div id="blog-content">

  <article>
    <h1>{{ .Title }}</h1>
    <p class="noindent"><b>Date:</b> {{ .Date.Format "Mon 2006-01-02" }}</p>
    <p class="noindent"><b>Permalink:</b> <a href="{{ .Permalink }}">{{ .Permalink }}</a></p>

    <br />

    <div class="blog-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>

  <hr class="content-width" />

  <div id="openring-content">
    <p>Articles from the internet that I've been reading</p>

    {{ partial "openring.html" . }}
  </div>
</div>
{{ end }}