about summary refs log tree commit diff
path: root/layouts/partials/feed.html
blob: 42c756473f5e4636f4d70565eebf1c02532e4928 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<section class="feed">
	<ol reversed>
		{{ range sort .Pages "Date" "desc" }}
		<li>
			<time datetime="{{ .Date }}">{{ .Date.Format "2006-01-02" }}</time>:
			<a href="{{ .RelPermalink }}">{{ trim .Title " " }}</a>
			{{ partial "post-language-switcher.html" . }}
			{{ partial "post-info.html" . }}
		</li>
		{{ end }}
	<ol>
</section>