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.
11 lines
382 B
11 lines
382 B
<ul id="post-list" class="archive readmore">
|
|
<h3>Read more</h3>
|
|
{{ range first 10 .Site.Pages }}
|
|
{{ $url := replace .Permalink ( printf "%s" .Site.BaseURL) "" }}
|
|
{{ if ne $url "about/" }}
|
|
<li>
|
|
<a href="{{ .Permalink }}">{{ .Title }}<aside class="dates">{{ .Date.Format "Jan 2" }}</aside></a>
|
|
</li>
|
|
{{ end }}
|
|
{{ end }}
|
|
</ul>
|