This repository has been archived on 2026-05-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GitBlog.md/sample_data/home/error.ejs
2019-06-26 20:09:08 +02:00

18 lines
462 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<%- include('head'); %>
<title><%= info.title %> - Error <%= error %></title>
</head>
<body>
<main>
<h1>Somehing went wrong
<small>(Error <%= error %>)</small>
</h1>
It means the resource you're trying to access is unavailable right now.<br>
We're terribly sorry that you encountered this error.<br><br>
<a href="/">Back to home</a>
<%- include('footer'); %>
</main>
</body>
</html>