layout.gohtml 833 B

1234567891011121314151617181920212223242526
  1. <!doctype html>
  2. <html lang="">
  3. <head>
  4. <title>Contact App</title>
  5. <link rel="stylesheet" href="https://the.missing.style/v0.2.0/missing.min.css">
  6. <link rel="stylesheet" href="/static/site.css">
  7. <script src="/static/js/htmx-1.8.0.js"></script>
  8. <script src="/static/js/_hyperscript-0.9.7.js"></script>
  9. <script src="/static/js/rsjs-menu.js" type="module"></script>
  10. <script defer src="https://unpkg.com/alpinejs@3/dist/cdn.min.js"></script>
  11. </head>
  12. <body hx-boost="true">
  13. <main>
  14. <header>
  15. <h1>
  16. <all-caps>contacts.app</all-caps>
  17. <sub-title>A Demo Contacts Application</sub-title>
  18. </h1>
  19. </header>
  20. {{ range $message := get_flashed_messages }}
  21. <div class="flash">{{ $message }}</div>
  22. {{ end }}
  23. {{block "content" . }}{{ end }}
  24. </main>
  25. </body>
  26. </html>