14 lines
479 B
HTML
14 lines
479 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="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
|
|
</head>
|
|
<body class="{% block body_class %}{% endblock %}">
|
|
{% block content %}{% endblock %}
|
|
</body>
|
|
</html>
|