txtdot/templates/get.ejs

25 lines
734 B
Plaintext
Raw Normal View History

<!DOCTYPE html>
<html lang="<%= parsed.lang %>">
2023-08-15 17:13:42 +03:00
<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">
<title><%= parsed.title %></title>
2023-08-15 17:13:42 +03:00
<link rel="stylesheet" href="/static/common.css">
<link rel="stylesheet" href="/static/get.css">
2023-08-15 17:13:42 +03:00
</head>
<body>
<main>
2023-08-16 13:08:53 +03:00
<div class="menu">
2023-08-16 13:35:03 +03:00
<a class="button secondary" href="/">Home</a>
<a class="button secondary" href="<%= remoteUrl %>">Original page</a>
2023-08-16 13:08:53 +03:00
</div>
<p class="title">
2023-08-15 17:13:42 +03:00
<%= parsed.title %>
</p>
2023-08-15 17:13:42 +03:00
<%- parsed.content %>
</main>
</body>
</html>