baseof.html 473 B

123456789101112131415161718
  1. {{ if le hugo.Version "0.124.0" }}
  2. {{ errorf "Please use Hugo version 0.124.0 or higher!" }}
  3. {{ end }}
  4. <!DOCTYPE html>
  5. <html lang="{{ .Lang }}" itemscope itemtype="http://schema.org/WebPage">
  6. <head>
  7. {{ partial "head.html" . }}
  8. </head>
  9. <body>
  10. {{ partial "nav.html" . }}
  11. {{ block "header" . }}{{ partial "header.html" . }}{{ end }}
  12. {{ block "main" . }}{{ end }}
  13. {{ partial "footer.html" . }}
  14. {{ block "footer" . }}{{ end }}
  15. </body>
  16. </html>