The backend for the AiteStory website
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.

40 lines
1.1 KiB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. {{define "base"}}
  2. <!DOCTYPE html>
  3. <!-- For preview and template creation only -->
  4. <html>
  5. <head>
  6. <title>{{ .ViewTitle }}</title>
  7. <meta charset="UTF-8">
  8. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=2.0, user-scalable=no" />
  9. <meta name="theme-color" content="#222222">
  10. <meta name="robots" content="noindex">
  11. <meta name="googlebot" content="noindex">
  12. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  13. <link rel="stylesheet" href="/ui/css/base.css" />
  14. <link rel="stylesheet" href="/ui/css/magic.css" />
  15. <link rel="stylesheet" href="/ui/css/theme.css" />
  16. <link rel="stylesheet" media="screen" href="/ui/fonts/source-sans-pro/source-sans-pro.css" type="text/css"/>
  17. <script type="text/javascript" src="/ui/js/background.js"></script>
  18. {{ block "head" . }}{{end}}
  19. </head>
  20. <body>
  21. <img id="main-background" src="/ui/img/bg.png" />
  22. <div id="content-wrapper">
  23. <main>
  24. {{ block "content" . }}{{end}}
  25. </main>
  26. <nav class="main-menu">
  27. {{ block "menu" . }}{{end}}
  28. </nav>
  29. </div>
  30. </body>
  31. </html>
  32. {{end}}