mirror of
https://git.evilfox.cc/test2/wg.git
synced 2026-07-31 20:03:22 +00:00
19 lines
489 B
HTML
19 lines
489 B
HTML
{{define "offline.html"}}
|
|
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
{{template "layout_head" .}}
|
|
<title>Недоступен — {{.SiteName}}</title>
|
|
</head>
|
|
<body>
|
|
<div class="bg-pattern"></div><div class="bg-glow"></div>
|
|
<div class="wrap" style="max-width:560px;margin-top:10vh">
|
|
<div class="card center">
|
|
<h1>Сайт временно недоступен</h1>
|
|
<p class="muted" style="margin-top:1rem">{{.Message}}</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
{{end}}
|