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.

39 lines
1.0 KiB

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. <link rel="stylesheet" href="/ui/css/base.css" />
  13. <link rel="stylesheet" href="/ui/css/magic.css" />
  14. <link rel="stylesheet" href="/ui/css/theme.css" />
  15. <link rel="stylesheet" media="screen" href="/ui/fonts/SeanSans.css" type="text/css"/>
  16. <script type="text/javascript" src="/ui/js/background.js"></script>
  17. {{ block "head" . }}{{end}}
  18. </head>
  19. <body>
  20. <img id="main-background" src="/ui/img/bg.png" />
  21. <div id="content-wrapper">
  22. <main>
  23. {{ block "content" . }}{{end}}
  24. </main>
  25. <nav class="main-menu">
  26. {{ block "menu" . }}{{end}}
  27. </nav>
  28. </div>
  29. </body>
  30. </html>
  31. {{end}}