single.html 570 B

1234567891011121314151617181920212223242526272829
  1. {{ define "title"}}
  2. About | {{ .Site.Params.author.name }}
  3. {{ end }}
  4. {{ define "main" }}
  5. <article class="about-page">
  6. <header>
  7. <h1>
  8. {{ .Title }}
  9. </h1>
  10. </header>
  11. <div class="about-content">
  12. {{ .Content }}
  13. </div>
  14. </article>
  15. <style>
  16. .about-page {
  17. text-align: left;
  18. }
  19. .about-page h1, .about-page h2, .about-page h3, .about-page h4, .about-page h5, .about-page h6 {
  20. text-align: center;
  21. }
  22. .about-page img {
  23. display: block;
  24. margin: 0 auto;
  25. }
  26. </style>
  27. {{ end }}