feat: add initial project scaffold with gitignore, changelog, api client, env config, and main application skeleton

This commit is contained in:
2025-08-04 17:22:16 +00:00
commit 9290717e8d
6 changed files with 688 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Zhurnal Changelog</title>
<style>
body { background: black; color: white; font-family: sans-serif; padding: 20px; }
body.light { background: white; color: black; }
button { background: #555; color: white; border: none; padding: 5px 10px; border-radius: 5px; cursor: pointer; position: fixed; top: 10px; right: 10px; }
body.light button { background: #ddd; color: black; }
a { color: inherit; }
ul { padding-left: 20px; }
</style>
</head>
<body>
<button onclick="document.body.classList.toggle('light')">Toggle Theme</button>
<h1>Changelog</h1>
{{content}}
<p>
<a href="/download/json/{{hash}}">Download JSON</a> |
<a href="/download/md/{{hash}}">Download Markdown</a>
</p>
</body>
</html>