My public website https://www.chameth.com/
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

list.html 481B

1234567891011121314151617
  1. {{ $paginator := .Paginate (where (where .Site.Pages "Type" "post") "Kind" "page") }}
  2. {{ range $paginator.Pages }}
  3. <article class="post">
  4. <header>
  5. <div class="title">
  6. <h2><a href="{{ .RelPermalink }}">{{ .Title }}</a></h2>
  7. <p>Published on {{ .Date.Format "Jan 2, 2006" }}</p>
  8. </div>
  9. </header>
  10. {{ .Summary }}
  11. <footer class="readmore">
  12. <a href="{{ .RelPermalink }}">Read more &raquo;</a>
  13. </footer>
  14. </article>
  15. {{ end }}
  16. {{ partial "pagination" . }}