txtdot/packages/server/templates/error.ejs

33 lines
967 B
Plaintext
Raw Normal View History

2023-08-21 16:02:52 +03:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="robots" content="noindex, nofollow">
2023-08-21 17:35:25 +03:00
<title>txt. <%= code %></title>
2023-08-21 16:02:52 +03:00
<link rel="stylesheet" href="/static/common.css">
<link rel="stylesheet" href="/static/index.css">
</head>
<body>
<main>
<header>
<h1>txt<span class="dot-err">.</span></h1>
2023-09-20 13:40:57 +03:00
<p class="menu">
<a href="/" class="button">Home</a>
2023-09-21 16:58:23 +03:00
<% if (locals.proxyBtn && proxyBtn) { %>
2023-09-21 12:18:12 +03:00
<a
href="/proxy?url=<%= encodeURIComponent(url) %>"
class="button secondary"
>
Proxy
</a>
<% } %>
2023-09-20 13:40:57 +03:00
<a href="<%= url %>" class="button secondary">Original page</a>
</p>
2023-08-21 16:02:52 +03:00
<p><%= description %></p>
</header>
</main>
</body>
</html>