Add project files.

This commit is contained in:
2025-04-19 20:47:58 +03:00
parent 9e14d137ae
commit bfdcdb1f3b
66 changed files with 2394 additions and 0 deletions
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{Name}</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>{Name}</h1>
<p><em>{Description}</em></p>
</header>
<section>
<div><strong>Authors:</strong> {Authors}</div>
<div><strong>Language:</strong> {Language}</div>
<div><strong>Categories:</strong> {Categories}</div>
<div><strong>Version:</strong> {Version}</div>
</section>
<nav>
<h2>Table of Contents</h2>
<ul>
{TOC} <!-- Expected to be a list of items (e.g. <li>Chapter 1</li>, etc.) -->
</ul>
</nav>
</body>
</html>