blob: d39be5549d385128d88d5ccad5f137af8d36a35a (
plain)
| 1
2
3
4
5
6
7
8
9
10
 | {{ range (union .Sections .Pages).ByDate.Reverse }}
  <div class="blog-post-wrapper">
    <a class="blog-post-anchor" href="{{ .RelPermalink }}">
      <div class="blog-post">
        <time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "02 Jan" }}</time>
        <span class="title">{{ .Title }}</span>
      </div>
    </a>
  </div>
{{ end }}
 |