txtdot/templates/index.ejs
Artemy Egorov 6e9e9a6cc6
Plugins config (#147)
* refactor: rename configs

* refactor: create plugin config

* refactor: universal config

* fix: engine plugins default list
2024-04-27 22:15:19 +03:00

29 lines
1.1 KiB
Plaintext

<!DOCTYPE html>
<html>
<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="<%= config.package.description %>">
<title>txt. main page</title>
<link rel="stylesheet" href="/static/common.css">
<link rel="stylesheet" href="/static/index.css">
<link rel="stylesheet" href="/static/form.css">
<link rel="stylesheet" href="/static/form-inputs.css">
</head>
<body>
<main>
<header>
<h1>txt<span class="dot">.</span></h1>
<div class="menu">
<a href="https://github.com/TxtDot/txtdot/releases/tag/v<%= config.package.version %>" class="button secondary">v<%= config.package.version %></a>
<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><%= config.package.description %></p>
</header>
<%- include('./components/form-main.ejs') %>
</main>
</body>
</html>