This commit is contained in:
Sivert V. Sæther
2025-09-26 15:54:44 +02:00
commit ef77991a1f
9 changed files with 126 additions and 0 deletions

11
templates/base.j2 Normal file
View File

@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="/static/style.css" />
<title>{% block title %}{% endblock %} - C2py</title>
{% block head %}{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>