about summary refs log tree commit diff
path: root/layouts/partials/generic-list.html
blob: e8397c4bea50545998a87718e3954ffd514d138e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
  <section class="list">
    <ul>
      {{ range sort .Pages "Date" }}
      <li>
        <a href="{{ .RelPermalink }}">{{ trim .Title " " }}</a>
        {{ partial "post-language-switcher.html" . }}
        {{ partial "post-info.html" . }}
      </li>
      {{ end }}
    <ul>
  </section>