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
T
2019-06-23 15:14:47 +02:00

29 lines
1.0 KiB
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title><%= info.title %> - Error <%= error %></title>
<meta name="twitter:card" content="summary_large_image">
<%- `<meta property="og:title" content="${info.title} - Home">` %>
<%- `<meta property="twitter:title" content="${info.title} - Home">` %>
<%- `<meta property="og:description" content="${info.description}">` %>
<%- `<meta property="twitter:description" content="${info.description}">` %>
<%- `<meta property="org:url" content="${info.host}/">` %>
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<link rel="stylesheet" type="text/css" href="/style.css">
</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>