~dricottone/blog

ref: 802e6f4ba742dd2e8930bf810759c5665a3cd19f blog/layouts/_default/list.html -rw-r--r-- 271 bytes
802e6f4bDominic Ricottone Redesign of header/navigation 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ define "main" }}
<div id="blog-content">

  <article>
    <h1>{{ .Title }}</h1>
    {{ .Content }}
  </article>

  <ul id="blog-post-list">
    {{ range .Pages }}
    <li>
    {{ partial "blog-post-listitem.html" . }}
    </li>
    {{ end }}
  </ul>

</div>
{{ end }}