~dricottone/blog

ref: 28b70db007caa81b829104c45eda73f30b90e072 blog/layouts/_default/list.html -rw-r--r-- 271 bytes
28b70db0Dominic Ricottone Post and updates 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 }}