My public website https://www.chameth.com/
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

index.html 303B

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