-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
107 lines (97 loc) · 4.83 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Repertuar Teatralny">
<meta name="author" content="Teodor Wojcik">
<link rel="icon" href="../../favicon.ico">
<link rel="stylesheet" href="dist/app.css">
<!-- <link rel="stylesheet" href="styles/clndr.css">-->
<!-- <link rel="stylesheet" href="styles/popup.css">-->
<!-- <link rel="stylesheet" href="styles/bootstrap-theme.min.css">-->
<!-- <link rel="stylesheet" href="styles/pure-min.css">-->
<!-- <link rel="stylesheet" href="styles/dropit.css">-->
<!--[if lte IE 8]>
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.5.0/grids-responsive-old-ie-min.css">
<![endif]-->
<!--[if gt IE 8]><!-->
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.5.0/grids-responsive-min.css">
<!--<![endif]--><!--[if lte IE 8]>
<!-- <link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro|Rokkitt:400,700|Raleway:400,300|Montserrat|Open+Sans:400italic,400|Roboto' rel='stylesheet' type='text/css'>-->
</head>
<h1>Repertuar Teatralny</h1>
<body class="noselect">
<div class="pure-g noselect">
<div class ="pure-u-sm-1 pure-u-md-1-5 noselect" id="buttons">
<div id="city">
<h3>Miasto</h3>
<script type="text/template" id="cities-template">
<% _.each(cityList, function(city_id){ %>
<button id="<%= city_id %>" class="pure-button inactive"><%= cityNames[city_id] %><% }); %>
</script>
<div id="buttons-cities">
</div>
<!--<ul class="menu">-->
<!-- <li>-->
<!-- <a id="city-name" class="pure-button" href="#">Warszawa</a>-->
<!-- <ul class="pure-button">-->
<!-- <li><a class="pure-button" id='krakow' href="#">Kraków</a></li>-->
<!-- <li><a class="pure-button" id='warszawa' href="#">Warszawa</a></li>-->
<!-- </ul>-->
<!-- </li>-->
<!--</ul>-->
</div>
<h3>Teatry</h3>
<script type="text/template" id="theaters-template">
<% _.each(theatresList, function(theatre_id){ %>
<button id="<%= theatre_id %>" class="pure-button inactive"><%= theatresNames[theatre_id].substr(6) %><% }); %>
</script>
<div id="buttons-theaters">
</div>
<br /><br />
</div>
<!--
<button id="<%= theatre %>" class="pure-button button-<%= theatre %> button-inactive capitalize"><%= theatre %>< /button><% }); %>
<div class ="pure-u-1 pure-u-md-1-5 noselect" id="buttons">
<button id="powszechny" class="pure-button button-powszechny button-inactive" >powszechny</button>
<button id="wspolczesny" class="pure-button button-wspolczesny button-inactive">Współczesny</button>
<button id="narodowy" class="pure-button button-narodowy button-inactive">Narodowy</button>
</div>
-->
<div class="cal pure-u-sm-1 pure-u-md-3-5"></div>
<script type="text/template" id="template-calendar">
<div class="clndr-controls">
<div class="clndr-previous-button">‹</div>
<div class="month"><%= month %></div>
<div class="clndr-next-button">›</div>
</div>
<div class="clndr-grid">
<div class="days-of-the-week">
<% _.each(daysOfTheWeek, function(day) { %>
<div class="header-day"><%= day %></div>
<% }); %>
<div class="days">
<% _.each(days, function(day) { %>
<div class="<%= day.classes %>"><%= day.day %></div>
<% }); %>
</div>
</div>
</div>
<div class="clndr-today-button">Today</div>
</script>
</div>
<div class="popup mfp-hide" style="border-radius: 25px">
<h1>Popup</h1>
<h2>Spektakle</h2>
<p></p>
<canvas id="canvas"></canvas>
</div>
<a href=".popup" class="open-popup-link mfp-hide">Show inline popup</a>
<script src="js/app.js"></script>
</body>
<footer>
<p> ~ <br />Teodor Wójcik & Zuzia Pela </p>
</footer>
</html>