2022-11-21 03:45:43 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="de">
|
|
|
|
<head>
|
2022-11-21 19:40:26 +01:00
|
|
|
<link rel="stylesheet" href="{{ url_for('normalize.css', path='normalize.css') }}">
|
|
|
|
<link rel="stylesheet" href="{{ url_for('milligram', path='dist/milligram.min.css') }}">
|
|
|
|
<link rel="stylesheet" href="{{ url_for('@fortawesome/fontawesome-free', path='css/all.min.css') }}">
|
2022-11-21 03:45:43 +01:00
|
|
|
|
|
|
|
<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>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div class="calendar">
|
|
|
|
{% include "sidebar/includes/header.html" %}
|
|
|
|
{% include "sidebar/includes/events-list.html" %}
|
|
|
|
{% include "sidebar/includes/footer.html" %}
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|