phoenix/templates/error.html.tmpl

19 lines
426 B
Cheetah
Raw Normal View History

2023-04-06 10:36:11 +05:00
<!DOCTYPE html>
<html lang="en">
<head>
{{template "head"}}
<link rel="stylesheet" href="assets/error.css" />
</head>
<body>
<div class="page">
<div class="content">
<h1>Error</h1>
<code>{{.error}}</code>
<p>
<a href="/">Main page</a>
</p>
</div>
</div>
</body>
</html>