You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
517 B
13 lines
517 B
<ul id="post-list" class="archive readmore">
|
|
<h3>{{ with .Site.Params.readMore }}{{ . }}{{ else }}Read more{{ end }}</h3>
|
|
|
|
{{ $pages := where .Site.Pages "Kind" "page" }}
|
|
{{ range first 10 (where $pages "Params.hidden" "ne" "true") }}
|
|
{{ $url := replace .Permalink .Site.BaseURL "" }}
|
|
{{ if and (ne $url "about/") }}
|
|
<li>
|
|
<a href="{{ .Permalink }}">{{ .Title }}<aside class="dates">{{ .Date.Format "2. Jan" }}</aside></a>
|
|
</li>
|
|
{{ end }}
|
|
{{ end }}
|
|
</ul>
|