the code for my website (https://www.annwan.me)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
711 B

10 months ago
  1. {{ define "main" }}
  2. <header class="content__header">
  3. <h1>{{ .Title | markdownify }}</h1>
  4. </header>
  5. <div class="content__body">
  6. {{ .Content }}
  7. </div>
  8. <footer class="content__footer"></footer>
  9. {{ end }}
  10. {{define "aside" }}
  11. {{ if .Params.description }}<p>{{ .Params.description }}</p>{{ end }}
  12. {{ if or (.Params.author) (.Params.date) }}
  13. <p>
  14. {{ if .Params.author }}By {{ .Params.author }}{{ if .Date }}, {{ end }}{{ end }}
  15. {{ if .Date }}{{ .Date.Format "2006-01-02" }}{{ end }}
  16. </p>
  17. {{ end }}
  18. {{ if and (.Params.toc) (.TableOfContents) }}
  19. <hr>
  20. On this page:
  21. {{ .TableOfContents }}
  22. {{ end }}
  23. {{ end }}