21 lines
		
	
	
		
			850 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			850 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="de">
 | 
						|
    <head>
 | 
						|
        <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') }}">
 | 
						|
 | 
						|
        <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>
 |