single.html 238 B

123456789101112131415
  1. {{ define "title"}}
  2. About | {{ .Site.Params.author.name }}
  3. {{ end }}
  4. {{ define "main" }}
  5. <article>
  6. <header>
  7. <h1>
  8. {{ .Title }}
  9. </h1>
  10. </header>
  11. {{ .Content }}
  12. </div>
  13. </article>
  14. {{ end }}