19 lines
491 B
HTML
19 lines
491 B
HTML
{{define "error.html"}}
|
|
<!doctype html>
|
|
<html lang="de">
|
|
{{template "partials_head" .}}
|
|
<body>
|
|
{{template "partials_nav" .}}
|
|
<main class="page">
|
|
<h1>Fehler</h1>
|
|
{{template "partials_flash" .}}
|
|
<section class="card">
|
|
<pre class="pre">{{.Error}}</pre>
|
|
<div class="hint">Tipp: In Docker sicherstellen, dass <code>/etc/ntfy/server.yml</code> und <code>/var/lib/ntfy</code> korrekt gemountet sind.</div>
|
|
</section>
|
|
</main>
|
|
{{template "partials_footer" .}}
|
|
</body>
|
|
</html>
|
|
{{end}}
|