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.

36 lines
859 B

10 months ago
  1. <!DOCTYPE html>
  2. <html lang="{{- site.Language.Lang -}}">
  3. <head>
  4. {{- partial "head.html" . -}}
  5. </head>
  6. <body>
  7. <div class="page">
  8. <header class="page__header">
  9. {{- partial "header.html" . -}}
  10. </header>
  11. <section class="page__body">
  12. {{- block "main" . }}{{- end }}
  13. </section>
  14. <section class="page__aside">
  15. <div class="aside__about">
  16. {{- partial "about.html" . -}}
  17. </div>
  18. <hr>
  19. <div class="aside__content">
  20. {{- block "aside" . }}{{- end }}
  21. </div>
  22. </section>
  23. <footer class="page__footer">
  24. {{- partial "footer.html" . -}}
  25. </footer>
  26. </div>
  27. </body>
  28. </html>