finance-consumer/bookkeeper/templates/base.html.j2
2024-12-30 21:31:28 +08:00

13 lines
328 B
Django/Jinja

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Skeleton App{% endblock title %}</title>
<link rel="stylesheet" href="/static/bulma.min.css">
</head>
<body>
{% block content %}{% endblock content %}
</body>
</html>