You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
410 B
HTML
12 lines
410 B
HTML
<ul id="post-list" class="archive readmore">
|
|
<h3>{{ .Site.Params.readMore | default "Read more" }}</h3>
|
|
|
|
{{ $kind := where .Site.RegularPages "Section" "!=" "" }}
|
|
{{ $othr := where $kind "URL" "!=" .URL }}
|
|
{{ range first 10 $othr }}
|
|
<li>
|
|
<a href="{{ .URL }}">{{ .LinkTitle }}<aside class="dates">{{ .Date.Format "Jan 2 2006" }}</aside></a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|