~dricottone/blog

ref: 6612877e172f9a8d7dce46d637d8f9b1d1fdf3e9 blog/layouts/_default/list.html -rw-r--r-- 608 bytes
6612877eDominic Ricottone Update base URL to include www subdomain 2 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
{{ 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 -->
    <h2><a href="{{.Permalink}}">{{.Title}}</a></h2>
    <div class="post">
      <p><i>posted on {{.Date.Format "2006-01-02"}}</i></p>
      <p>{{.Summary}}</p>
      {{ if .Truncated }}
      <p><a href="{{.Permalink}}">Read Moreā€¦</a></p>
      {{ end }}
    </div>

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

{{ end }}