1
0

vault backup: 2025-12-07 17:19:19
All checks were successful
Deploy Quartz site to GitHub Pages / build (push) Successful in 4m16s

This commit is contained in:
2025-12-07 17:19:19 +01:00
parent d529452012
commit 502887ad61
5 changed files with 42 additions and 31 deletions

17
wip/templates/base.jinja2 Normal file
View File

@@ -0,0 +1,17 @@
<html lang="en">
<head>
<meta charset="utf-8">
<base href="{{base_path}}">
<link rel="stylesheet" href="style.css">
<title>{% block title %}WIP{% endblock %}</title>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/mathjax@2/MathJax.js"></script>
</head>
<body>
<div class="sidebar"></div>
<div class="content">
{% block content %}{% endblock %}
</div>
<script src="script.js"></script>
{% block scripts %}{% endblock %}
</body>
</html>