add blocks

This commit is contained in:
2025-12-17 10:14:13 +02:00
parent 18a31be0b1
commit d78a6bedd5
54 changed files with 2755 additions and 10 deletions

24
static/base/main.html Normal file
View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<base href="/">
<link rel="icon" type="image/png" href="/static/img/favicon.png">
<title>JWT SPA project</title>
<link rel="stylesheet" href="/static/css/style.css">
<script defer src="/static/js/app.js"></script>
</head>
<body id="body">
<header>
<div id="header"></div>
</header>
<main id="content"></main>
<footer>
<p>© 2025 Go Markdown SPA</p>
</footer>
</body>
</html>