summaryrefslogtreecommitdiff
path: root/themes/markskitchen/layouts/_default/list.html
blob: 5c745d630c4687ccaeedf69260cd4e1edc93f67e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{ define "head" }}
<link rel="stylesheet" href='{{ "css/list.css" | absURL }}'>
{{ end }}

{{ define "main" }}
{{ if .Content }}
<main id="main" class="post">
  <article class="content">
    {{ .Content }}
  </article>
{{ else }}
<main id="main">
  <ul>
    {{ range .Pages }}
    <li>
      <a class="link" href="{{ .RelPermalink }}">{{ .Title }} --- <i>{{ .PublishDate.Format "January 2, 2006"}}</i></a>
    </li>
    {{ end }}
  </ul>
{{ end}}
</main>
{{ end }}