Files
Fatima/templates/base.html
T
2026-07-18 22:32:56 +02:00

15 lines
574 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta name="theme-color" content="#f6f4ef">
<title>{% block title %}Fatimas Calendar{% endblock %}</title>
<link rel="icon" type="image/png" href="{{ url_for('static', filename='wwwsuynl.png') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
</head>
<body class="{% block body_class %}{% endblock %}">
{% block content %}{% endblock %}
</body>
</html>