single.html 496 B

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