This repository has been archived on 2021-05-23. You can view files and clone it, but cannot push or open issues or pull requests.
simpledash/resources/templates/error.html

24 lines
766 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
{{template "head" dict
"SiteTitle" .Config.Title
"PageTitle" "Error"
"Theme" .Config.Theme}}
</head>
<body>
{{template "navbar" dict
"SiteTitle" .Config.Title
"Page" "error"
"User" ""}}
<div class="hero is-fullheight-with-navbar is-light">
<div class="hero-body">
<div class="container has-text-centered">
<p class="title">Error <span class="has-text-danger">{{.StatusCode}}</span></p>
<p class="subtitle">{{.Reason}}</p>
<a class="button is-danger" href="/">Go to homepage</a>
</div>
</div>
</div>
</body>
</html>