txtdot/templates/index.ejs

29 lines
1.1 KiB
Plaintext
Raw Permalink Normal View History

2023-08-15 17:13:42 +03:00
<!DOCTYPE html>
<html>
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="description" content="<%= publicConfig.description %>">
2023-08-15 16:26:49 +03:00
<title>txt. main page</title>
<link rel="stylesheet" href="/static/common.css">
<link rel="stylesheet" href="/static/index.css">
2023-08-21 16:02:52 +03:00
<link rel="stylesheet" href="/static/form.css">
<link rel="stylesheet" href="/static/form-inputs.css">
2023-08-15 16:26:49 +03:00
</head>
<body>
<main>
<header>
2023-08-21 16:02:52 +03:00
<h1>txt<span class="dot">.</span></h1>
<div class="menu">
<a href="https://github.com/TxtDot/txtdot/releases/latest" class="button secondary">v<%= publicConfig.version %></a>
2023-09-20 12:13:23 +03:00
<a href="https://github.com/txtdot/txtdot" class="button secondary">GitHub</a>
<a href="https://txtdot.github.io/documentation" class="button secondary">Docs</a>
</div>
<p><%= publicConfig.description %></p>
2023-08-15 16:26:49 +03:00
</header>
<%- include('./components/form-main.ejs') %>
2023-08-15 16:26:49 +03:00
</main>
</body>
</html>