~dricottone/blog

ref: 044b76380a50084ea9d7252cfc50b93a98b1227f blog/layouts/index.html -rw-r--r-- 670 bytes
044b7638Dominic Ricottone Refactor head partial 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
30
31
{{ define "main" }}

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

<!-- pulls in content/posts/*.md -->
<ul id="list-posts">
  {{ with .Site.GetPage "/posts" }}
    {{ 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 class="read-more"><a href="{{.Permalink}}">Read Moreā€¦</a></p>
        {{ end }}
      </div>
    </li>

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

{{ end }}