Refactor: / (main.ts) -> /get (get.ts), /start (start.ts) -> / (index.ts)

This commit is contained in:
DarkCat09
2023-08-15 16:03:28 +04:00
parent 4dbc4fc8a0
commit 871a3cecfd
7 changed files with 98 additions and 96 deletions

14
templates/get.ejs Normal file
View File

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="<%= parsed.lang %>">
<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>
</head>
<body>
<h1><%= parsed.title %></h1>
<main><%- parsed.content %></main>
</body>
</html>