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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

21 lines
593 B

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. {{- partial "head.html" . -}}
  4. <body>
  5. <div id="wrapper">
  6. <div id="header">
  7. {{- partial "header.html" . -}}
  8. </div>
  9. <div id="content" class="pure-g">
  10. <div class="pure-u-1-5"></div>
  11. <div class="pure-u-3-5">
  12. {{- block "main" . }}{{- end }}
  13. </div>
  14. <div class="pure-u-1-5"></div>
  15. </div>
  16. </div>
  17. <div id="footer">
  18. {{- partial "footer.html" . -}}
  19. </div>
  20. </body>
  21. </html>