codex-mythica/views/error.ejs

32 lines
396 B
Plaintext
Raw Permalink Normal View History

2018-01-08 00:12:11 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ERROR! | <%= site.title %></title>
<style>
body {
background-color: #333;
color: #ccc;
}
</style></head>
<body class="container">
<main>
<h1>Error</h1>
<pre>
<%=message%>
<%=error.stack%>
</pre>
</main>
<footer>
2024-10-15 20:37:26 +00:00
<% include('./partials/footer') %>
2018-01-08 00:12:11 +00:00
</footer>
</body>
</html>