Files
archtika/templates/blog/index.html

28 lines
471 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Document</title>
</head>
<body>
<nav>
{{logo}}
</nav>
<header>
{{title}}
</header>
<main>
<section>
{{main_content}}
</section>
<section>
{{articles}}
</section>
</main>
<footer>
{{additional_text}}
</footer>
</body>
</html>