My public website https://www.chameth.com/
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.

list.html 594B

12345678910111213141516171819202122
  1. {{ $paginator := .Paginate (where .Site.Pages "Type" "post") }}
  2. {{ range $paginator.Pages }}
  3. <article class="post">
  4. <header>
  5. <div class="title">
  6. <h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
  7. <p>{{ .Params.strapline }}</p>
  8. </div>
  9. </header>
  10. {{ .Summary }}
  11. <footer>
  12. <ul>
  13. <li><a href="{{ .Permalink }}">Read more</a></li>
  14. <li><a href="{{ .Permalink }}#disqus_thread" class="comments"></a></li>
  15. </ul>
  16. </footer>
  17. </article>
  18. {{ end }}
  19. {{ partial "pagination" . }}
  20. <script id="dsq-count-scr" src="//chameth.disqus.com/count.js" async></script>