aboutsummaryrefslogtreecommitdiff
path: root/layouts/posts/section.html
blob: eedc63e63201c40ff4e236fef713a21a9684a6e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{{ define "main" }}
  <h1>{{ .Title }}</h1>
  {{ .Content }}
  <ul>
  {{ range .Pages }}
    <li>
      <a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a> 
      <p>{{ .Date | time.Format "2006-01-02" }}</p>{{ .Summary }}
    </li>
  {{ end }}
  </ul>
{{ end }}