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.
11 lines
467 B
HTML
11 lines
467 B
HTML
8 years ago
|
<ul id="post-list" class="archive readmore">
|
||
|
<h3>{{ with .Site.Params.readMore }}{{ . }}{{ else }}Read more{{ end }}</h3>
|
||
|
{{ range first 10 (where .Site.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 "Jan 2" }}</aside></a>
|
||
|
</li>
|
||
|
{{ end }}
|
||
|
{{ end }}
|
||
|
</ul>
|