40 lines
1.9 KiB
HTML
40 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="it">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Balotta - sito in manutenzione</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='flyers/simple/style.css') }}">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='flyers/simple/paper.css') }} ">
|
|
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
|
</head>
|
|
<body class="A3 center">
|
|
|
|
<div class="intestazione">
|
|
<div class="titolo center">
|
|
<h1>Balotta</h1>
|
|
<div class="subtitle">Agenda condivisa per Bologna</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="events">
|
|
{% for event in events %}
|
|
<div class="event">
|
|
<div class="event_info">
|
|
<h3 class="title">{{ event.title }}</h3>
|
|
<div class="flex"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" role="img" aria-hidden="true" class="v-icon__svg"><path d="M19,19H5V8H19M16,1V3H8V1H6V3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3H18V1M17,12H12V17H17V12Z"></path></svg><span class="time">{{ event.when }}</span></div>
|
|
<div class="location">
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" role="img" aria-hidden="true" class="v-icon__svg"><path d="M12,11.5A2.5,2.5 0 0,1 9.5,9A2.5,2.5 0 0,1 12,6.5A2.5,2.5 0 0,1 14.5,9A2.5,2.5 0 0,1 12,11.5M12,2A7,7 0 0,0 5,9C5,14.25 12,22 12,22C12,22 19,14.25 19,9A7,7 0 0,0 12,2Z"></path>
|
|
<div class="">
|
|
</span><strong><span class="place_name">{{ event.place.name }}</span></strong>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="center flyer-container">
|
|
<img class="flyer" src="https://balotta.org/media/thumb/{{event.media[0].url}}" style="object-position: {{ event.media[0].thumbnailPosition }}"></img>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</body>
|
|
</html>
|