txtdot/templates/get.ejs

24 lines
479 B
Plaintext
Raw Normal View History

<!DOCTYPE html>
<html lang="<%= parsed.lang %>">
2023-08-15 16:26:49 +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">
2023-08-15 16:26:49 +03:00
<title>
<%= parsed.title %>
</title>
<link rel="stylesheet" href="/static/common.css">
</head>
2023-08-15 16:26:49 +03:00
<body>
2023-08-15 16:26:49 +03:00
<main>
<h1>
<%= parsed.title %>
</h1>
<%- parsed.content %>
</main>
</body>
2023-08-15 16:26:49 +03:00
</html>