loggedout.html 1.0 KB

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>{{.Strings.Loggedout.title}}</title>
  7. <link rel="stylesheet" href="/static/style/style.css" />
  8. <link rel="icon" type="image/svg+xml" href="/static/img/logo.svg">
  9. <link rel="apple-touch-icon" type="image/svg+xml" href="/static/img/logo.svg">
  10. </head>
  11. <body class="flex flex-column height-all">
  12. <header class="w12 padding-bottom-_25 flex flex-row flex-justify-space flex-align-centre flex-content">
  13. <a href="/" class="decoration-none">
  14. <h1 class="inline valign-mid text sans margin-lr-1">a·muse</h1>
  15. </a>
  16. </header>
  17. <main class="margin-lr-1 flex-fill">
  18. <div class="flex flex-column height-fill flex-centre">
  19. <div class="w12 flex flex-centre border-box left">
  20. <div>
  21. <div class="sans italic centre">{{.Strings.Loggedout.mischief}}</div>
  22. <hr/>
  23. <p class="sans">{{.Strings.Loggedout.see_you}}</p>
  24. </div>
  25. </div>
  26. </div>
  27. </main>
  28. </body>
  29. </html>