txtdot/templates/index.ejs

29 lines
1.1 KiB
Plaintext
Raw 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="<%= packageJSON.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">
Fix dependabot (#95) * Build(deps): Bump linkedom from 0.16.6 to 0.16.8 (#89) Bumps [linkedom](https://github.com/WebReflection/linkedom) from 0.16.6 to 0.16.8. - [Commits](https://github.com/WebReflection/linkedom/compare/v0.16.6...v0.16.8) --- updated-dependencies: - dependency-name: linkedom dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Build(deps-dev): Bump @typescript-eslint/parser from 6.18.0 to 7.1.0 (#88) Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 6.18.0 to 7.1.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.1.0/packages/parser) --- updated-dependencies: - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Build(deps): Bump @fastify/swagger from 8.13.0 to 8.14.0 (#87) Bumps [@fastify/swagger](https://github.com/fastify/fastify-swagger) from 8.13.0 to 8.14.0. - [Release notes](https://github.com/fastify/fastify-swagger/releases) - [Commits](https://github.com/fastify/fastify-swagger/compare/v8.13.0...v8.14.0) --- updated-dependencies: - dependency-name: "@fastify/swagger" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Build(deps): Bump @fastify/view from 8.2.0 to 9.0.0 (#86) Bumps [@fastify/view](https://github.com/fastify/point-of-view) from 8.2.0 to 9.0.0. - [Release notes](https://github.com/fastify/point-of-view/releases) - [Commits](https://github.com/fastify/point-of-view/compare/v8.2.0...v9.0.0) --- updated-dependencies: - dependency-name: "@fastify/view" dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Build(deps-dev): Bump @types/node from 20.10.6 to 20.11.20 (#85) Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.10.6 to 20.11.20. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * ci: fix dependabot branches and create packages in dev * fix: version link in index * dep: update eslint-plugin --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-03-04 11:10:37 +03:00
<a href="https://github.com/TxtDot/txtdot/releases/tag/v<%= packageJSON.version %>" class="button secondary">v<%= packageJSON.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><%= packageJSON.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>