txtdot/templates/get.ejs

21 lines
659 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>
<link rel="stylesheet" href="/static/common.css" />
<link rel="stylesheet" href="/static/get.css" />
<%- include('./components/search-styles.ejs') %>
2023-08-15 17:13:42 +03:00
</head>
<body>
<main>
<%- include('./components/menu.ejs') %>
<p class="title"><%= parsed.title %></p>
2023-08-15 17:13:42 +03:00
<%- parsed.content %>
</main>
</body>
</html>