22 lines
812 B
HTML
22 lines
812 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
{% block header %}
|
|
{#- TODO: replace with locally served files #}
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.css">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
|
|
|
|
<link rel="stylesheet" href="{{ url_for('static', path='style.css') }}" type="text/css"/>
|
|
<link rel="stylesheet" href="{{ url_for('static', path='roboto.css') }}" type="text/css"/>
|
|
|
|
<title>Embeddable calendar</title>
|
|
{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
{% block body %}
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|