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

  1. <ul id="post-list" class="archive readmore">
  2. <h3>{{ with .Site.Params.readMore }}{{ . }}{{ else }}Read more{{ end }}</h3>
  3. {{ $pages := where .Site.Pages "Kind" "page" }}
  4. {{ range first 10 (where $pages "Params.hidden" "ne" "true") }}
  5. {{ $url := replace .Permalink .Site.BaseURL "" }}
  6. {{ if and (ne $url "about/") }}
  7. <li>
  8. <a href="{{ .Permalink }}">{{ .Title }}<aside class="dates">{{ .Date.Format "2. Jan" }}</aside></a>
  9. </li>
  10. {{ end }}
  11. {{ end }}
  12. </ul>