layout.gohtml 486 B

123456789101112131415161718192021
  1. {{ define "layout.html" }}
  2. <!DOCTYPE html>
  3. <html lang="">
  4. <head>
  5. <title>Contact App</title>
  6. <link rel="stylesheet" href="/static/missing.min.css">
  7. <link rel="stylesheet" href="/static/site.css">
  8. </head>
  9. <body>
  10. <main>
  11. <header>
  12. <h1>
  13. <all-caps>contacts.app</all-caps>
  14. <sub-title>A demo contacts application</sub-title>
  15. </h1>
  16. </header>
  17. {{ block "content" . }}Default content{{ end }}
  18. </main>
  19. </body>
  20. </html>
  21. {{ end }}