all repos — blog @ 5522839057c617b817e3f9c1799ffd1c66284f06

Code and content for 5ika.ch

layouts/_default/list.html (view raw)

 1{{ define "main" }}
 2<main>
 3  <p>{{ .Content }}</p>
 4  {{ with .OutputFormats.Get "rss" -}}
 5  <p>
 6    Vous pouvez également retrouver ces articles à travers
 7    <a href="{{ .Permalink }}">ce flux RSS</a>.
 8  </p>
 9  {{ end }}
10  <ul>
11    <!-- Ranges through content/posts/*.md -->
12    {{ range .Pages }}
13    <li>
14      <a href="{{ .RelPermalink }}"
15        >{{ .Date | time.Format "02.01.2006" }} - {{ .LinkTitle }}</a
16      >
17    </li>
18    {{ end }}
19  </ul>
20</main>
21{{ end }}