25 lines
547 B
HTML
25 lines
547 B
HTML
|
|
<!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>
|