feat: Rewrite in Zola

This commit is contained in:
daudix-UFO
2023-10-13 00:55:20 +00:00
parent e94ef3caf7
commit 36926a0b79
80 changed files with 2029 additions and 1588 deletions

15
templates/base.html Normal file
View File

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
{% include "includes/head.html" ignore missing -%}
<body>
{% include "includes/nav.html" ignore missing -%}
<div class="container">
{% block custom %}{%- endblock -%}
{% block content %}{%- endblock -%}
</div>
{% include "includes/footer.html" ignore missing -%}
</body>
</html>