~dricottone/blog

ref: f841a177f8f483ac3d2090c4b41e1a3d9c4f49c3 blog/layouts/_default/list.html -rw-r--r-- 607 bytes
f841a177Dominic Ricottone Initial commit 3 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{{ define "main" }}

<article>
  <!-- pulls in content/<collection>/_index.md -->
  {{.Content}}
</article>

<ul id="list-posts">
  <!-- pulls in content/<collection>/*.md -->
  {{ range .Pages }}
  <li>

    <!-- see https://gohugo.io/functions/format/#hugo-date-and-time-templating-reference -->
    <h1><a href="{{.Permalink}}">{{.Date.Format "2006-01-02"}} | {{.Title}}</a></h2>
    <div class="post">
      <p>{{.Summary}}</p>
      {{ if .Truncated }}
      <div>
        <i><a href="{{.Permalink}}">Read Moreā€¦</a></i>
      </div>
      {{ end }}
    </div>

  </li>
  {{ end }}
</ul>

{{ end }}