~dricottone/blog

ref: 42bd5833d59637cf3feef39464ec6687567ae94f blog/layouts/_default/list.html -rw-r--r-- 245 bytes
42bd5833Dominic Ricottone Updating link 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 }}