basic Zola beginnings

This commit is contained in:
lynxize 2024-11-07 21:51:28 -07:00
parent 1187191aff
commit 1d39002bb5
7 changed files with 67 additions and 0 deletions

18
templates/base.html Normal file
View file

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>lynxize</title>
</head>
<body>
<section class="section">
<div class="container">
{% block content %} {% endblock %}
</div>
</section>
</body>
</html>