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.

1234567891011121314
  1. <article class="index">
  2. <header>
  3. <div class="title">
  4. <h2>Content listing</h2>
  5. </div>
  6. </header>
  7. <ul>
  8. {{ range where (where .Site.Pages "Type" "post") "Kind" "page" }}
  9. <li>
  10. <a href="{{ .RelPermalink }}">{{ .Title }}</a> - {{ .Date.Format "Jan 2, 2006" }}
  11. </li>
  12. {{ end }}
  13. </ul>
  14. </article>