22 lines
935 B
HTML
22 lines
935 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="de">
|
||
|
<head>
|
||
|
{#- 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>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div class="calendar">
|
||
|
{% include "sidebar/includes/header.html" %}
|
||
|
{% include "sidebar/includes/events-list.html" %}
|
||
|
{% include "sidebar/includes/footer.html" %}
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|