maintenance_html_file.go 898 B

12345678910111213141516171819202122232425262728
  1. package template
  2. var VarMaintenanceHtmlFile = []byte(`<!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="utf-8" />
  6. <meta name="theme-color" content="#205081" />
  7. <title>Maintenance</title>
  8. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  9. <meta name="viewport" content="width=device-width, initial-scale=0.8, maximum-scale=0.8" />
  10. <link rel="shortcut icon" href="{{$.System.PathIcoFav}}" type="image/x-icon" />
  11. <link rel="stylesheet" type="text/css" media="all" href="{{$.System.PathCssStyles}}" />
  12. </head>
  13. <body>
  14. <div class="wrapper">
  15. <div class="logo">
  16. <div class="svg">
  17. <img src="{{$.System.PathSvgLogo}}" width="150" height="150" />
  18. </div>
  19. </div>
  20. <h1>We are currently down for maintenance</h1>
  21. <h2>
  22. <script>document.write(document.location.host);</script>
  23. <noscript>fave.pro</noscript>
  24. </h2>
  25. </div>
  26. </body>
  27. </html>`)