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

single.html 274B

123456789101112
  1. {{ define "main" }}
  2. {{- $dateFormat := default "January 2, 2006" .Site.Params.BookDateFormat -}}
  3. <header>
  4. <h1>{{ .Title }}</h1>
  5. <h5>
  6. <strong>{{ .Date.Format $dateFormat }}</strong>
  7. </h5>
  8. </header>
  9. <article class="markdown">
  10. {{- .Content -}}
  11. </article>
  12. {{ end }}