blob: cbe91af87719eaa35d6087a0df0a1d02aa460103 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{{- $items := partial "updated-items.html" . -}}
<section class="recent" aria-labelledby="recent-title">
<h2 id="recent-title">RECENT</h2>
<ol class="document-list">
{{- range first site.Params.recentLimit $items }}
<li>
<time datetime="{{ .sortDate }}">{{ .sortDate }}</time>
<span class="document-kind">[{{ .kind }}]</span>
<a href="{{ .page.RelPermalink }}" lang="{{ .page.Params.lang }}">{{ .page.LinkTitle }}</a>
</li>
{{- end }}
</ol>
<p class="recent-more"><a href="{{ "updates/" | relURL }}">Read more</a></p>
</section>
|