~dricottone/blog

ref: dcbed11924f5816b467b47a0169fb248ae605163 blog/layouts/_default/list.html -rw-r--r-- 245 bytes
dcbed119Dominic Ricottone nitpick 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ define "main" }}
<div id="blog-content">

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

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

</div>
{{ end }}