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.

19 lines
481 B

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