~dricottone/blog

ref: fcdb09284bd2956bae8e754b6b64907412b9835e blog/layouts/_default/list.html -rw-r--r-- 566 bytes
fcdb0928Dominic Ricottone Small structural changes to home page and navigation 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 }}