~dricottone/blog

ref: 0cd171e962a5f03934966e6abf5006b5a5e4c5a8 blog/layouts/_default/list.html -rw-r--r-- 578 bytes
0cd171e9Dominic Ricottone Adding resources not yet in use on public site 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{{ define "main" }}
<!-- content/<collection>/_index.md -->
<article>
  {{ .Content }}
</article>

<ul id="list-posts">
  <!-- content/<collection>/*.md -->
  {{ range .Pages }}
  <li>
    <h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
    <div class="post">
      <p><i>posted on {{ .Date.Format "2006-01-02" }}</i></p> <!-- see https://gohugo.io/functions/format/#hugo-date-and-time-templating-reference -->
      <p>{{ .Summary }}</p>
      {{ if .Truncated }} <p><a href="{{ .Permalink }}">Read Moreā€¦</a></p> {{ end }}
    </div>
  </li>
  {{ end }}
</ul>
{{ end }}