odeon_uk 2.0.4 → 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +2 -1
- data/CHANGELOG.md +6 -0
- data/Rakefile +29 -0
- data/lib/odeon_uk/api/cinema.rb +62 -0
- data/lib/odeon_uk/api/response.rb +55 -0
- data/lib/odeon_uk/api/screenings.rb +89 -0
- data/lib/odeon_uk/cinema.rb +53 -114
- data/lib/odeon_uk/configuration.rb +21 -0
- data/lib/odeon_uk/html/cinema.rb +101 -0
- data/lib/odeon_uk/html/parser/film_with_screenings.rb +160 -0
- data/lib/odeon_uk/html/screenings.rb +38 -0
- data/lib/odeon_uk/{internal → html}/website.rb +1 -1
- data/lib/odeon_uk/internal/title_sanitizer.rb +1 -0
- data/lib/odeon_uk/screening.rb +7 -15
- data/lib/odeon_uk/version.rb +2 -2
- data/lib/odeon_uk.rb +11 -4
- data/odeon_uk.gemspec +2 -0
- data/rake/fixture_creator.rb +98 -0
- data/test/fixtures/api/all_cinemas.plist +0 -0
- data/test/fixtures/api/app_init.plist +0 -0
- data/test/fixtures/api/film_times/71-100747.plist +0 -0
- data/test/fixtures/api/film_times/71-100750.plist +0 -0
- data/test/fixtures/api/film_times/71-100790.plist +0 -0
- data/test/fixtures/api/film_times/71-14646.plist +0 -0
- data/test/fixtures/api/film_times/71-14725.plist +0 -0
- data/test/fixtures/api/film_times/71-15086.plist +0 -0
- data/test/fixtures/api/film_times/71-15096.plist +0 -0
- data/test/fixtures/api/film_times/71-15122.plist +0 -0
- data/test/fixtures/api/film_times/71-15130.plist +0 -0
- data/test/fixtures/api/film_times/71-15141.plist +0 -0
- data/test/fixtures/api/film_times/71-15142.plist +0 -0
- data/test/fixtures/api/film_times/71-15143.plist +0 -0
- data/test/fixtures/api/film_times/71-15144.plist +0 -0
- data/test/fixtures/api/film_times/71-15145.plist +0 -0
- data/test/fixtures/api/film_times/71-15170.plist +0 -0
- data/test/fixtures/api/film_times/71-15172.plist +0 -0
- data/test/fixtures/api/film_times/71-15177.plist +0 -0
- data/test/fixtures/api/film_times/71-15179.plist +0 -0
- data/test/fixtures/api/film_times/71-15182.plist +0 -0
- data/test/fixtures/api/film_times/71-15286.plist +0 -0
- data/test/fixtures/api/film_times/71-15360.plist +0 -0
- data/test/fixtures/api/film_times/71-15586.plist +0 -0
- data/test/fixtures/api/film_times/71-15700.plist +0 -0
- data/test/fixtures/api/film_times/71-15718.plist +0 -0
- data/test/fixtures/api/film_times/71-15768.plist +0 -0
- data/test/fixtures/api/film_times/71-15788.plist +0 -0
- data/test/fixtures/api/film_times/71-15793.plist +0 -0
- data/test/fixtures/api/film_times/71-15794.plist +0 -0
- data/test/fixtures/api/film_times/71-15795.plist +0 -0
- data/test/fixtures/api/film_times/71-15796.plist +0 -0
- data/test/fixtures/api/film_times/71-15799.plist +0 -0
- data/test/fixtures/api/film_times/71-15802.plist +0 -0
- data/test/fixtures/api/film_times/71-15814.plist +0 -0
- data/test/fixtures/api/film_times/71-15817.plist +0 -0
- data/test/fixtures/api/film_times/71-15840.plist +0 -0
- data/test/fixtures/{cinema/leicester_square.html → html/cinema/105.html} +384 -313
- data/test/fixtures/{cinema/bfi_imax.html → html/cinema/211.html} +677 -355
- data/test/fixtures/{cinema/brighton.html → html/cinema/71.html} +899 -431
- data/test/fixtures/html/showtimes/11-imax.html +170 -0
- data/test/fixtures/html/showtimes/171-d-box.html +203 -0
- data/test/fixtures/html/showtimes/71-0.html +59 -0
- data/test/fixtures/html/showtimes/71.html +2395 -0
- data/test/fixtures/{sitemap.html → html/sitemap.html} +264 -352
- data/test/lib/odeon_uk/api/cinema_test.rb +149 -0
- data/test/lib/odeon_uk/api/response_test.rb +44 -0
- data/test/lib/odeon_uk/api/screenings_test.rb +43 -0
- data/test/lib/odeon_uk/cinema_test.rb +373 -148
- data/test/lib/odeon_uk/configuration_test.rb +29 -0
- data/test/lib/odeon_uk/html/cinema_test.rb +149 -0
- data/test/lib/odeon_uk/{internal/film_with_screenings_parser_test.rb → html/parser/film_with_screenings_test.rb} +12 -42
- data/test/lib/odeon_uk/html/screenings_test.rb +43 -0
- data/test/lib/odeon_uk/html/website_test.rb +37 -0
- data/test/lib/odeon_uk/screening_test.rb +17 -83
- data/test/support/api_fixtures_helper.rb +34 -0
- data/test/support/website_fixtures_helper.rb +25 -0
- data/test/test_helper.rb +7 -2
- metadata +149 -34
- data/lib/odeon_uk/film.rb +0 -65
- data/lib/odeon_uk/internal/film_with_screenings_parser.rb +0 -159
- data/lib/odeon_uk/internal/showtimes_page.rb +0 -36
- data/test/fixture_updater.rb +0 -72
- data/test/fixtures/showtimes/brighton/film_first.html +0 -92
- data/test/fixtures/showtimes/brighton/film_last.html +0 -100
- data/test/fixtures/showtimes/brighton.html +0 -2071
- data/test/fixtures/showtimes/liverpool_one/film_first_dbox.html +0 -188
- data/test/fixtures/showtimes/manchester/film_first_imax.html +0 -182
- data/test/lib/odeon_uk/film_test.rb +0 -142
- data/test/lib/odeon_uk/internal/showtimes_page_test.rb +0 -51
- data/test/lib/odeon_uk/internal/website_test.rb +0 -59
@@ -0,0 +1,170 @@
|
|
1
|
+
<div id="26589" class="film-detail WEEK">
|
2
|
+
<div class="content-container film _WEEK" id="film-26589">
|
3
|
+
<div class="grad-hor">
|
4
|
+
<a href="/films/chappie/15179/"><img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/asset_management/70x108_c4dd5497552fa794d917efd3bf28a115.jpg"></a>
|
5
|
+
<div class="presentation-info">
|
6
|
+
<h4><a href="/films/chappie/15179/">Chappie</a></h4>
|
7
|
+
<a href="/film-classifications/" alt="15" title="More about film classifications"><div class="cert-icon-uk-15-small"></div></a> <span class="description">
|
8
|
+
ID may be required </span>
|
9
|
+
</div>
|
10
|
+
<p><strong>Sci-fi about the first artificially intelligent robot. </strong></p>
|
11
|
+
<div class="presentation-info">
|
12
|
+
<div data-rating-master-id="15179" data-return-to="/showtimes/week/11/" class="star-rating-container star-rating rating-icon-star-light-small-inactive">
|
13
|
+
<div class="rating-icon-star-small-active s7" data-rating="7">
|
14
|
+
<div class="rate-over s1"></div>
|
15
|
+
<div class="rate-over s2"></div>
|
16
|
+
<div class="rate-over s3"></div>
|
17
|
+
<div class="rate-over s4"></div>
|
18
|
+
<div class="rate-over s5"></div>
|
19
|
+
</div>
|
20
|
+
</div>
|
21
|
+
<span class="description"><strong>Film length: 120 mins</strong></span>
|
22
|
+
</div>
|
23
|
+
<p class="description">Strong language, bloody violence.</p>
|
24
|
+
</div>
|
25
|
+
<div class="info-corner">
|
26
|
+
<div class="img-bundle">
|
27
|
+
<div class="film-icon-WEEK feature-icon-light-imax-medium WEEK_IMAX" data-schedule="IMAX" data-film="26589"></div>
|
28
|
+
<div class="film-icon-WEEK feature-icon-light-2d-medium WEEK_2D" data-schedule="2D" data-film="26589"></div> </div>
|
29
|
+
<div class="btn-group">
|
30
|
+
<a href="http://odeon.trailer.cineweb.de/chappie.mp4" class="btn btn-primary trailer kkvideo-trigger" data-return-to="/showtimes/week/11/" data-film-id="15179" data-showbooknowbutton="false" data-filmpage="false"><i class="film-icon-btn-play"></i>Trailer</a>
|
31
|
+
<button class="btn btn-primary trailer dropdown-toggle" data-toggle="dropdown">
|
32
|
+
<span class="caret"></span>
|
33
|
+
</button>
|
34
|
+
<ul class="dropdown-menu">
|
35
|
+
<li><a href="#">Add to Playlist</a></li>
|
36
|
+
</ul>
|
37
|
+
</div> </div>
|
38
|
+
</div>
|
39
|
+
<div id="performances-WEEK-26589" class="content-container times-all _WEEK">
|
40
|
+
<div class="accordion-group times-all performances-WEEK _26589" id="tech-26589-0">
|
41
|
+
<div class="content-container tech accordion-heading _WEEK">
|
42
|
+
<a data-toggle="collapse" data-parent="#tech-26589-0-WEEK" class="accordion-toggle" href="#collapse-26589-0-WEEK">in IMAX</a><a href="#" class="icon-info-blue info-icon-form-info-small" data-toggle="popover" title="" data-placement="bottom" data-content="Stunning image quality, extraordinary sound and big screen experience. IMAX is believing."></a>
|
43
|
+
</div>
|
44
|
+
<div id="collapse-26589-0-WEEK" class="accordion-body in collapse" style="height: auto;">
|
45
|
+
<div class="accordion-inner">
|
46
|
+
<div class="content-container times containerWEEK">
|
47
|
+
<div class="presentation-info week">
|
48
|
+
<strong>Saturday</strong><br>14 Mar</div>
|
49
|
+
<ul class="unstyled inline">
|
50
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_MORNING WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/NzBCQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Peak - book Chappie on 14/03/2015 10:10" data-popup="popup" data-duration="120" data-start="10:10" data-end="12:10" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">10:10</a></li>
|
51
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/OTdCQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Peak - book Chappie on 14/03/2015 12:55" data-popup="popup" data-duration="120" data-start="12:55" data-end="14:55" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">12:55</a></li>
|
52
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/QkVCQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Peak - book Chappie on 14/03/2015 15:40" data-popup="popup" data-duration="120" data-start="15:40" data-end="17:40" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">15:40</a></li>
|
53
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MThDQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Peak - book Chappie on 14/03/2015 18:25" data-popup="popup" data-duration="120" data-start="18:25" data-end="20:25" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">18:25</a></li>
|
54
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/QjBEQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Peak - book Chappie on 14/03/2015 21:10" data-popup="popup" data-duration="120" data-start="21:10" data-end="23:10" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">21:10</a></li> </ul>
|
55
|
+
</div>
|
56
|
+
<div class="content-container times containerWEEK">
|
57
|
+
<div class="presentation-info week">
|
58
|
+
<strong>Sunday</strong><br>15 Mar</div>
|
59
|
+
<ul class="unstyled inline">
|
60
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_MORNING WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/ODBCQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Peak - book Chappie on 15/03/2015 10:10" data-popup="popup" data-duration="120" data-start="10:10" data-end="12:10" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">10:10</a></li>
|
61
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/QTdCQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Peak - book Chappie on 15/03/2015 12:55" data-popup="popup" data-duration="120" data-start="12:55" data-end="14:55" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">12:55</a></li>
|
62
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/Q0VCQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Peak - book Chappie on 15/03/2015 15:40" data-popup="popup" data-duration="120" data-start="15:40" data-end="17:40" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">15:40</a></li>
|
63
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MjhDQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Peak - book Chappie on 15/03/2015 18:25" data-popup="popup" data-duration="120" data-start="18:25" data-end="20:25" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">18:25</a></li>
|
64
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/QzBEQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Peak - book Chappie on 15/03/2015 21:10" data-popup="popup" data-duration="120" data-start="21:10" data-end="23:10" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">21:10</a></li> </ul>
|
65
|
+
</div>
|
66
|
+
<div class="content-container times containerWEEK">
|
67
|
+
<div class="presentation-info week">
|
68
|
+
<strong>Monday</strong><br>16 Mar</div>
|
69
|
+
<ul class="unstyled inline">
|
70
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/QjdCQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Super Saver - book Chappie on 16/03/2015 12:55" data-popup="popup" data-duration="120" data-start="12:55" data-end="14:55" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">12:55</a></li>
|
71
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/REVCQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Super Saver - book Chappie on 16/03/2015 15:40" data-popup="popup" data-duration="120" data-start="15:40" data-end="17:40" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">15:40</a></li>
|
72
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MzhDQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Peak - book Chappie on 16/03/2015 18:25" data-popup="popup" data-duration="120" data-start="18:25" data-end="20:25" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">18:25</a></li>
|
73
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/RDBEQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Peak - book Chappie on 16/03/2015 21:10" data-popup="popup" data-duration="120" data-start="21:10" data-end="23:10" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">21:10</a></li> </ul>
|
74
|
+
</div>
|
75
|
+
<div class="content-container times containerWEEK">
|
76
|
+
<div class="presentation-info week">
|
77
|
+
<strong>Tuesday</strong><br>17 Mar</div>
|
78
|
+
<ul class="unstyled inline">
|
79
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_15 WEEK_AFTERNOON WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/QzdCQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Bargain - book Chappie on 17/03/2015 12:55" data-popup="popup" data-duration="120" data-start="12:55" data-end="14:55" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">12:55</a></li>
|
80
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_15 WEEK_AFTERNOON WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/RUVCQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Bargain - book Chappie on 17/03/2015 15:40" data-popup="popup" data-duration="120" data-start="15:40" data-end="17:40" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">15:40</a></li>
|
81
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_15 WEEK_EVENING WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/NDhDQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Bargain - book Chappie on 17/03/2015 18:25" data-popup="popup" data-duration="120" data-start="18:25" data-end="20:25" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">18:25</a></li>
|
82
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_15 WEEK_EVENING WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/RTBEQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Bargain - book Chappie on 17/03/2015 21:10" data-popup="popup" data-duration="120" data-start="21:10" data-end="23:10" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">21:10</a></li> </ul>
|
83
|
+
</div>
|
84
|
+
<div class="content-container times containerWEEK">
|
85
|
+
<div class="presentation-info week">
|
86
|
+
<strong>Wednesday</strong><br>18 Mar</div>
|
87
|
+
<ul class="unstyled inline">
|
88
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/RDdCQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Super Saver - book Chappie on 18/03/2015 12:55" data-popup="popup" data-duration="120" data-start="12:55" data-end="14:55" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">12:55</a></li>
|
89
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/RkVCQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Super Saver - book Chappie on 18/03/2015 15:40" data-popup="popup" data-duration="120" data-start="15:40" data-end="17:40" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">15:40</a></li>
|
90
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/NThDQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Peak - book Chappie on 18/03/2015 18:25" data-popup="popup" data-duration="120" data-start="18:25" data-end="20:25" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">18:25</a></li>
|
91
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_IMAX WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/RjBEQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Peak - book Chappie on 18/03/2015 21:10" data-popup="popup" data-duration="120" data-start="21:10" data-end="23:10" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 1 (Wheelchair Accessible)" data-is-online="1">21:10</a></li> </ul>
|
92
|
+
</div>
|
93
|
+
<div class="content-container times stopper performances-WEEK _26589"></div>
|
94
|
+
</div>
|
95
|
+
</div>
|
96
|
+
</div>
|
97
|
+
<div class="accordion-group times-all performances-WEEK _26589" id="tech-26589-1">
|
98
|
+
<div class="content-container tech accordion-heading _WEEK">
|
99
|
+
<a data-toggle="collapse" data-parent="#tech-26589-1-WEEK" class="accordion-toggle" href="#collapse-26589-1-WEEK">in 2D</a><a href="#" class="icon-info-blue info-icon-form-info-small" data-toggle="popover" title="" data-placement="bottom" data-content="2D means two dimensional. No 3D glasses required. Sit back, relax and enjoy."></a>
|
100
|
+
</div>
|
101
|
+
<div id="collapse-26589-1-WEEK" class="accordion-body in collapse" style="height: auto;">
|
102
|
+
<div class="accordion-inner">
|
103
|
+
<div class="content-container times containerWEEK">
|
104
|
+
<div class="presentation-info week">
|
105
|
+
<strong>Saturday</strong><br>14 Mar</div>
|
106
|
+
<ul class="unstyled inline">
|
107
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_MORNING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/RDNCQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Peak - book Chappie on 14/03/2015 11:55" data-popup="popup" data-duration="120" data-start="11:55" data-end="13:55" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">11:55</a></li>
|
108
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/RkFCQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Peak - book Chappie on 14/03/2015 14:40" data-popup="popup" data-duration="120" data-start="14:40" data-end="16:40" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">14:40</a></li>
|
109
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/NzJDQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Peak - book Chappie on 14/03/2015 17:25" data-popup="popup" data-duration="120" data-start="17:25" data-end="19:25" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">17:25</a></li>
|
110
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/N0JDQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Peak - book Chappie on 14/03/2015 20:10" data-popup="popup" data-duration="120" data-start="20:10" data-end="22:10" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">20:10</a></li> </ul>
|
111
|
+
</div>
|
112
|
+
<div class="content-container times containerWEEK">
|
113
|
+
<div class="presentation-info week">
|
114
|
+
<strong>Sunday</strong><br>15 Mar</div>
|
115
|
+
<ul class="unstyled inline">
|
116
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_MORNING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/RTNCQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Peak - book Chappie on 15/03/2015 11:55" data-popup="popup" data-duration="120" data-start="11:55" data-end="13:55" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">11:55</a></li>
|
117
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_SUBTITLEDFORHARDOFHEARING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show">
|
118
|
+
<a href="https://www.odeon.co.uk/booking/init/MEJCQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Peak - book Chappie on 15/03/2015 14:40" data-popup="popup" data-duration="120" data-start="14:40" data-end="16:40" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">14:40</a><i class="WEEK small moar ">Subtitled for <br>hard of hearing</i>
|
119
|
+
</li>
|
120
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/ODJDQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Peak - book Chappie on 15/03/2015 17:25" data-popup="popup" data-duration="120" data-start="17:25" data-end="19:25" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">17:25</a></li>
|
121
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/OEJDQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Peak - book Chappie on 15/03/2015 20:10" data-popup="popup" data-duration="120" data-start="20:10" data-end="22:10" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">20:10</a></li> </ul>
|
122
|
+
</div>
|
123
|
+
<div class="content-container times containerWEEK">
|
124
|
+
<div class="presentation-info week">
|
125
|
+
<strong>Monday</strong><br>16 Mar</div>
|
126
|
+
<ul class="unstyled inline">
|
127
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_MORNING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/RjNCQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Super Saver - book Chappie on 16/03/2015 11:55" data-popup="popup" data-duration="120" data-start="11:55" data-end="13:55" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">11:55</a></li>
|
128
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_SUBTITLEDFORHARDOFHEARING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show">
|
129
|
+
<a href="https://www.odeon.co.uk/booking/init/MUJCQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Super Saver - book Chappie on 16/03/2015 14:40" data-popup="popup" data-duration="120" data-start="14:40" data-end="16:40" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">14:40</a><i class="WEEK small moar ">Subtitled for <br>hard of hearing</i>
|
130
|
+
</li>
|
131
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/OTJDQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Peak - book Chappie on 16/03/2015 17:25" data-popup="popup" data-duration="120" data-start="17:25" data-end="19:25" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">17:25</a></li>
|
132
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/OUJDQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Peak - book Chappie on 16/03/2015 20:10" data-popup="popup" data-duration="120" data-start="20:10" data-end="22:10" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">20:10</a></li> </ul>
|
133
|
+
</div>
|
134
|
+
<div class="content-container times containerWEEK">
|
135
|
+
<div class="presentation-info week">
|
136
|
+
<strong>Tuesday</strong><br>17 Mar</div>
|
137
|
+
<ul class="unstyled inline">
|
138
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_15 WEEK_MORNING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MDRCQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Bargain - book Chappie on 17/03/2015 11:55" data-popup="popup" data-duration="120" data-start="11:55" data-end="13:55" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">11:55</a></li>
|
139
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_15 WEEK_AFTERNOON WEEK_SUBTITLEDFORHARDOFHEARING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show">
|
140
|
+
<a href="https://www.odeon.co.uk/booking/init/MkJCQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Bargain - book Chappie on 17/03/2015 14:40" data-popup="popup" data-duration="120" data-start="14:40" data-end="16:40" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">14:40</a><i class="WEEK small moar ">Subtitled for <br>hard of hearing</i>
|
141
|
+
</li>
|
142
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_15 WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/QTJDQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Bargain - book Chappie on 17/03/2015 17:25" data-popup="popup" data-duration="120" data-start="17:25" data-end="19:25" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">17:25</a></li>
|
143
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_15 WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/QUJDQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Bargain - book Chappie on 17/03/2015 20:10" data-popup="popup" data-duration="120" data-start="20:10" data-end="22:10" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">20:10</a></li> </ul>
|
144
|
+
</div>
|
145
|
+
<div class="content-container times containerWEEK">
|
146
|
+
<div class="presentation-info week">
|
147
|
+
<strong>Wednesday</strong><br>18 Mar</div>
|
148
|
+
<ul class="unstyled inline">
|
149
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_MORNING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MTRCQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Super Saver - book Chappie on 18/03/2015 11:55" data-popup="popup" data-duration="120" data-start="11:55" data-end="13:55" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">11:55</a></li>
|
150
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/M0JCQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Super Saver - book Chappie on 18/03/2015 14:40" data-popup="popup" data-duration="120" data-start="14:40" data-end="16:40" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">14:40</a></li>
|
151
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/QjJDQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Peak - book Chappie on 18/03/2015 17:25" data-popup="popup" data-duration="120" data-start="17:25" data-end="19:25" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">17:25</a></li>
|
152
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/QkJDQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Peak - book Chappie on 18/03/2015 20:10" data-popup="popup" data-duration="120" data-start="20:10" data-end="22:10" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">20:10</a></li> </ul>
|
153
|
+
</div>
|
154
|
+
<div class="content-container times containerWEEK">
|
155
|
+
<div class="presentation-info week">
|
156
|
+
<strong>Thursday</strong><br>19 Mar</div>
|
157
|
+
<ul class="unstyled inline">
|
158
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_MORNING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/MjRCQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Super Saver - book Chappie on 19/03/2015 11:55" data-popup="popup" data-duration="120" data-start="11:55" data-end="13:55" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">11:55</a></li>
|
159
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/NEJCQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Super Saver - book Chappie on 19/03/2015 14:40" data-popup="popup" data-duration="120" data-start="14:40" data-end="16:40" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">14:40</a></li>
|
160
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/QzJDQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Peak - book Chappie on 19/03/2015 17:25" data-popup="popup" data-duration="120" data-start="17:25" data-end="19:25" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">17:25</a></li>
|
161
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_AUDIODESCRIBED WEEK_2D WEEK_GENRE_1 WEEK_GENRE_14 WEEK_GENRE_15 show"><a href="https://www.odeon.co.uk/booking/init/Q0JDQzMwMDAwMjNQS1BPQ0JGIzExIzE1MTc5/" class="performance-detail" title="Peak - book Chappie on 19/03/2015 20:10" data-popup="popup" data-duration="120" data-start="20:10" data-end="22:10" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 2 (Wheelchair Accessible)" data-is-online="1">20:10</a></li> </ul>
|
162
|
+
</div>
|
163
|
+
<div class="content-container times stopper performances-WEEK _26589"></div>
|
164
|
+
</div>
|
165
|
+
</div>
|
166
|
+
</div>
|
167
|
+
<!-- <div class="content-container times stopper performances-WEEK _26589"></div>-->
|
168
|
+
<div class="content-container white performances-WEEK _26589"></div>
|
169
|
+
</div>
|
170
|
+
</div>
|
@@ -0,0 +1,203 @@
|
|
1
|
+
<div id="26659" class="film-detail WEEK">
|
2
|
+
<div class="content-container film _WEEK" id="film-26659">
|
3
|
+
<div class="grad-hor">
|
4
|
+
<a href="/films/run_all_night/15768/"><img src="http://m2.odeon.co.uk/_uploads/asset_management/70x108_4ce02a732d4a4d57011886fff8637cbd.jpg"></a>
|
5
|
+
<div class="presentation-info">
|
6
|
+
<h4><a href="/films/run_all_night/15768/">Run All Night</a></h4>
|
7
|
+
<a href="/film-classifications/" alt="15" title="More about film classifications"><div class="cert-icon-uk-15-small"></div></a> <span class="description">
|
8
|
+
ID may be required </span>
|
9
|
+
</div>
|
10
|
+
<p><strong>Action thriller starring Liam Neeson as a retired hitman. </strong></p>
|
11
|
+
<div class="presentation-info">
|
12
|
+
<div data-rating-master-id="15768" data-return-to="/showtimes/week/171/" class="star-rating-container star-rating rating-icon-star-light-small-inactive">
|
13
|
+
<div class="rating-icon-star-small-active s7" data-rating="7">
|
14
|
+
<div class="rate-over s1"></div>
|
15
|
+
<div class="rate-over s2"></div>
|
16
|
+
<div class="rate-over s3"></div>
|
17
|
+
<div class="rate-over s4"></div>
|
18
|
+
<div class="rate-over s5"></div>
|
19
|
+
</div>
|
20
|
+
</div>
|
21
|
+
<span class="description"><strong>Film length: 114 mins</strong></span>
|
22
|
+
</div>
|
23
|
+
<p class="description">Strong violence, strong language, drug use.</p>
|
24
|
+
</div>
|
25
|
+
<div class="info-corner">
|
26
|
+
<div class="img-bundle">
|
27
|
+
<div class="film-icon-WEEK feature-icon-light-gallery-medium WEEK_GALLERY" data-schedule="GALLERY" data-film="26659"></div>
|
28
|
+
<div class="film-icon-WEEK feature-icon-light-2d-medium WEEK_2D" data-schedule="2D" data-film="26659"></div> </div>
|
29
|
+
<div class="btn-group">
|
30
|
+
<a href="http://odeon.trailer.cineweb.de/run_all_night.mp4" class="btn btn-primary trailer kkvideo-trigger" data-return-to="/showtimes/week/171/" data-film-id="15768" data-showbooknowbutton="false" data-filmpage="false"><i class="film-icon-btn-play"></i>Trailer</a>
|
31
|
+
<button class="btn btn-primary trailer dropdown-toggle" data-toggle="dropdown">
|
32
|
+
<span class="caret"></span>
|
33
|
+
</button>
|
34
|
+
<ul class="dropdown-menu">
|
35
|
+
<li><a href="#">Add to Playlist</a></li>
|
36
|
+
</ul>
|
37
|
+
</div> </div>
|
38
|
+
</div>
|
39
|
+
<div id="performances-WEEK-26659" class="content-container times-all _WEEK">
|
40
|
+
<div class="accordion-group times-all performances-WEEK _26659" id="tech-26659-0">
|
41
|
+
<div class="content-container tech accordion-heading _WEEK">
|
42
|
+
<a data-toggle="collapse" data-parent="#tech-26659-0-WEEK" class="accordion-toggle" href="#collapse-26659-0-WEEK">in 2D</a><a href="#" class="icon-info-blue info-icon-form-info-small" data-toggle="popover" title="" data-placement="bottom" data-content="2D means two dimensional. No 3D glasses required. Sit back, relax and enjoy."></a>
|
43
|
+
</div>
|
44
|
+
<div id="collapse-26659-0-WEEK" class="accordion-body in collapse" style="height: auto;">
|
45
|
+
<div class="accordion-inner">
|
46
|
+
<div class="content-container times containerWEEK">
|
47
|
+
<div class="presentation-info week">
|
48
|
+
<strong>Saturday</strong><br>14 Mar</div>
|
49
|
+
<ul class="unstyled inline">
|
50
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/OUMzRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 14/03/2015 13:00" data-popup="popup" data-duration="114" data-start="13:00" data-end="14:54" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 11 (Wheelchair Accessible)" data-is-online="1">13:00</a></li>
|
51
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_GALLERY WEEK_2D WEEK_GENRE_7 show">
|
52
|
+
<a href="https://www.odeon.co.uk/booking/init/QjY0RjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 14/03/2015 13:00" data-popup="popup" data-duration="114" data-start="13:00" data-end="14:54" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 16 (Wheelchair Accessible)" data-is-online="1">13:00</a><i class="WEEK ">G</i>
|
53
|
+
</li>
|
54
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_GALLERY WEEK_2D WEEK_GENRE_7 show">
|
55
|
+
<a href="https://www.odeon.co.uk/booking/init/MDc0RjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 14/03/2015 15:45" data-popup="popup" data-duration="114" data-start="15:45" data-end="17:39" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 16 (Wheelchair Accessible)" data-is-online="1">15:45</a><i class="WEEK ">G</i>
|
56
|
+
</li>
|
57
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/RkMzRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 14/03/2015 15:45" data-popup="popup" data-duration="114" data-start="15:45" data-end="17:39" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 11 (Wheelchair Accessible)" data-is-online="1">15:45</a></li>
|
58
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_DBOX WEEK_DBOX WEEK_2D WEEK_GENRE_7 show">
|
59
|
+
<a href="https://www.odeon.co.uk/booking/init/MUMyRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 14/03/2015 17:30" data-popup="popup" data-duration="114" data-start="17:30" data-end="19:24" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">17:30</a><i class="WEEK small ">D-Box</i>
|
60
|
+
</li>
|
61
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_GALLERY WEEK_2D WEEK_GENRE_7 show">
|
62
|
+
<a href="https://www.odeon.co.uk/booking/init/Njc0RjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 14/03/2015 18:30" data-popup="popup" data-duration="114" data-start="18:30" data-end="20:24" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 16 (Wheelchair Accessible)" data-is-online="1">18:30</a><i class="WEEK ">G</i>
|
63
|
+
</li>
|
64
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/NUQzRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 14/03/2015 18:30" data-popup="popup" data-duration="114" data-start="18:30" data-end="20:24" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 11 (Wheelchair Accessible)" data-is-online="1">18:30</a></li>
|
65
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_DBOX WEEK_DBOX WEEK_2D WEEK_GENRE_7 show">
|
66
|
+
<a href="https://www.odeon.co.uk/booking/init/MkMyRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 14/03/2015 20:15" data-popup="popup" data-duration="114" data-start="20:15" data-end="22:09" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">20:15</a><i class="WEEK small ">D-Box</i>
|
67
|
+
</li>
|
68
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/QkQzRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 14/03/2015 21:15" data-popup="popup" data-duration="114" data-start="21:15" data-end="23:09" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 11 (Wheelchair Accessible)" data-is-online="1">21:15</a></li>
|
69
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_GALLERY WEEK_2D WEEK_GENRE_7 show">
|
70
|
+
<a href="https://www.odeon.co.uk/booking/init/Qzc0RjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 14/03/2015 21:15" data-popup="popup" data-duration="114" data-start="21:15" data-end="23:09" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 16 (Wheelchair Accessible)" data-is-online="1">21:15</a><i class="WEEK ">G</i>
|
71
|
+
</li>
|
72
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_DBOX WEEK_DBOX WEEK_2D WEEK_GENRE_7 show">
|
73
|
+
<a href="https://www.odeon.co.uk/booking/init/M0MyRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 14/03/2015 23:00" data-popup="popup" data-duration="114" data-start="23:00" data-end="00:54" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">23:00</a><i class="WEEK small ">D-Box</i>
|
74
|
+
</li> </ul>
|
75
|
+
</div>
|
76
|
+
<div class="content-container times containerWEEK">
|
77
|
+
<div class="presentation-info week">
|
78
|
+
<strong>Sunday</strong><br>15 Mar</div>
|
79
|
+
<ul class="unstyled inline">
|
80
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/QUMzRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 15/03/2015 13:00" data-popup="popup" data-duration="114" data-start="13:00" data-end="14:54" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 11 (Wheelchair Accessible)" data-is-online="1">13:00</a></li>
|
81
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_GALLERY WEEK_2D WEEK_GENRE_7 show">
|
82
|
+
<a href="https://www.odeon.co.uk/booking/init/QzY0RjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 15/03/2015 13:00" data-popup="popup" data-duration="114" data-start="13:00" data-end="14:54" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 16 (Wheelchair Accessible)" data-is-online="1">13:00</a><i class="WEEK ">G</i>
|
83
|
+
</li>
|
84
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_GALLERY WEEK_2D WEEK_GENRE_7 show">
|
85
|
+
<a href="https://www.odeon.co.uk/booking/init/MTc0RjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 15/03/2015 15:45" data-popup="popup" data-duration="114" data-start="15:45" data-end="17:39" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 16 (Wheelchair Accessible)" data-is-online="1">15:45</a><i class="WEEK ">G</i>
|
86
|
+
</li>
|
87
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/MEQzRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 15/03/2015 15:45" data-popup="popup" data-duration="114" data-start="15:45" data-end="17:39" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 11 (Wheelchair Accessible)" data-is-online="1">15:45</a></li>
|
88
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_DBOX WEEK_DBOX WEEK_2D WEEK_GENRE_7 show">
|
89
|
+
<a href="https://www.odeon.co.uk/booking/init/NEMyRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 15/03/2015 17:30" data-popup="popup" data-duration="114" data-start="17:30" data-end="19:24" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">17:30</a><i class="WEEK small ">D-Box</i>
|
90
|
+
</li>
|
91
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/NkQzRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 15/03/2015 18:30" data-popup="popup" data-duration="114" data-start="18:30" data-end="20:24" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 11 (Wheelchair Accessible)" data-is-online="1">18:30</a></li>
|
92
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_GALLERY WEEK_2D WEEK_GENRE_7 show">
|
93
|
+
<a href="https://www.odeon.co.uk/booking/init/Nzc0RjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 15/03/2015 18:30" data-popup="popup" data-duration="114" data-start="18:30" data-end="20:24" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 16 (Wheelchair Accessible)" data-is-online="1">18:30</a><i class="WEEK ">G</i>
|
94
|
+
</li>
|
95
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_DBOX WEEK_DBOX WEEK_2D WEEK_GENRE_7 show">
|
96
|
+
<a href="https://www.odeon.co.uk/booking/init/NUMyRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 15/03/2015 20:15" data-popup="popup" data-duration="114" data-start="20:15" data-end="22:09" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">20:15</a><i class="WEEK small ">D-Box</i>
|
97
|
+
</li>
|
98
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_GALLERY WEEK_2D WEEK_GENRE_7 show">
|
99
|
+
<a href="https://www.odeon.co.uk/booking/init/RDc0RjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 15/03/2015 21:15" data-popup="popup" data-duration="114" data-start="21:15" data-end="23:09" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 16 (Wheelchair Accessible)" data-is-online="1">21:15</a><i class="WEEK ">G</i>
|
100
|
+
</li>
|
101
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/Q0QzRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 15/03/2015 21:15" data-popup="popup" data-duration="114" data-start="21:15" data-end="23:09" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 11 (Wheelchair Accessible)" data-is-online="1">21:15</a></li> </ul>
|
102
|
+
</div>
|
103
|
+
<div class="content-container times containerWEEK">
|
104
|
+
<div class="presentation-info week">
|
105
|
+
<strong>Monday</strong><br>16 Mar</div>
|
106
|
+
<ul class="unstyled inline">
|
107
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/QkMzRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Super Saver - book Run All Night on 16/03/2015 13:00" data-popup="popup" data-duration="114" data-start="13:00" data-end="14:54" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 11 (Wheelchair Accessible)" data-is-online="1">13:00</a></li>
|
108
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_GALLERY WEEK_2D WEEK_GENRE_7 show">
|
109
|
+
<a href="https://www.odeon.co.uk/booking/init/Mjc0RjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Super Saver - book Run All Night on 16/03/2015 15:45" data-popup="popup" data-duration="114" data-start="15:45" data-end="17:39" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 16 (Wheelchair Accessible)" data-is-online="1">15:45</a><i class="WEEK ">G</i>
|
110
|
+
</li>
|
111
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/MUQzRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Super Saver - book Run All Night on 16/03/2015 15:45" data-popup="popup" data-duration="114" data-start="15:45" data-end="17:39" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 11 (Wheelchair Accessible)" data-is-online="1">15:45</a></li>
|
112
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_DBOX WEEK_DBOX WEEK_2D WEEK_GENRE_7 show">
|
113
|
+
<a href="https://www.odeon.co.uk/booking/init/QkEyRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 16/03/2015 17:30" data-popup="popup" data-duration="114" data-start="17:30" data-end="19:24" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">17:30</a><i class="WEEK small ">D-Box</i>
|
114
|
+
</li>
|
115
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_GALLERY WEEK_2D WEEK_GENRE_7 show">
|
116
|
+
<a href="https://www.odeon.co.uk/booking/init/ODc0RjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 16/03/2015 18:30" data-popup="popup" data-duration="114" data-start="18:30" data-end="20:24" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 16 (Wheelchair Accessible)" data-is-online="1">18:30</a><i class="WEEK ">G</i>
|
117
|
+
</li>
|
118
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/N0QzRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 16/03/2015 18:30" data-popup="popup" data-duration="114" data-start="18:30" data-end="20:24" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 11 (Wheelchair Accessible)" data-is-online="1">18:30</a></li>
|
119
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_DBOX WEEK_DBOX WEEK_2D WEEK_GENRE_7 show">
|
120
|
+
<a href="https://www.odeon.co.uk/booking/init/MUIyRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 16/03/2015 20:15" data-popup="popup" data-duration="114" data-start="20:15" data-end="22:09" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">20:15</a><i class="WEEK small ">D-Box</i>
|
121
|
+
</li>
|
122
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_GALLERY WEEK_2D WEEK_GENRE_7 show">
|
123
|
+
<a href="https://www.odeon.co.uk/booking/init/RTc0RjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 16/03/2015 21:15" data-popup="popup" data-duration="114" data-start="21:15" data-end="23:09" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 16 (Wheelchair Accessible)" data-is-online="1">21:15</a><i class="WEEK ">G</i>
|
124
|
+
</li>
|
125
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/REQzRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 16/03/2015 21:15" data-popup="popup" data-duration="114" data-start="21:15" data-end="23:09" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 11 (Wheelchair Accessible)" data-is-online="1">21:15</a></li> </ul>
|
126
|
+
</div>
|
127
|
+
<div class="content-container times containerWEEK">
|
128
|
+
<div class="presentation-info week">
|
129
|
+
<strong>Tuesday</strong><br>17 Mar</div>
|
130
|
+
<ul class="unstyled inline">
|
131
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/Q0MzRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Bargain - book Run All Night on 17/03/2015 13:00" data-popup="popup" data-duration="114" data-start="13:00" data-end="14:54" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 11 (Wheelchair Accessible)" data-is-online="1">13:00</a></li>
|
132
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_GALLERY WEEK_2D WEEK_GENRE_7 show">
|
133
|
+
<a href="https://www.odeon.co.uk/booking/init/Mzc0RjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Super Saver - book Run All Night on 17/03/2015 15:45" data-popup="popup" data-duration="114" data-start="15:45" data-end="17:39" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 16 (Wheelchair Accessible)" data-is-online="1">15:45</a><i class="WEEK ">G</i>
|
134
|
+
</li>
|
135
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/MkQzRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Bargain - book Run All Night on 17/03/2015 15:45" data-popup="popup" data-duration="114" data-start="15:45" data-end="17:39" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 11 (Wheelchair Accessible)" data-is-online="1">15:45</a></li>
|
136
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_15 WEEK_EVENING WEEK_DBOX WEEK_DBOX WEEK_2D WEEK_GENRE_7 show">
|
137
|
+
<a href="https://www.odeon.co.uk/booking/init/Q0EyRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Bargain - book Run All Night on 17/03/2015 17:30" data-popup="popup" data-duration="114" data-start="17:30" data-end="19:24" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">17:30</a><i class="WEEK small ">D-Box</i>
|
138
|
+
</li>
|
139
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_GALLERY WEEK_2D WEEK_GENRE_7 show">
|
140
|
+
<a href="https://www.odeon.co.uk/booking/init/OTc0RjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 17/03/2015 18:30" data-popup="popup" data-duration="114" data-start="18:30" data-end="20:24" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 16 (Wheelchair Accessible)" data-is-online="1">18:30</a><i class="WEEK ">G</i>
|
141
|
+
</li>
|
142
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/OEQzRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Bargain - book Run All Night on 17/03/2015 18:30" data-popup="popup" data-duration="114" data-start="18:30" data-end="20:24" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 11 (Wheelchair Accessible)" data-is-online="1">18:30</a></li>
|
143
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_15 WEEK_EVENING WEEK_DBOX WEEK_DBOX WEEK_2D WEEK_GENRE_7 show">
|
144
|
+
<a href="https://www.odeon.co.uk/booking/init/MkIyRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Bargain - book Run All Night on 17/03/2015 20:15" data-popup="popup" data-duration="114" data-start="20:15" data-end="22:09" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">20:15</a><i class="WEEK small ">D-Box</i>
|
145
|
+
</li>
|
146
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_GALLERY WEEK_2D WEEK_GENRE_7 show">
|
147
|
+
<a href="https://www.odeon.co.uk/booking/init/Rjc0RjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 17/03/2015 21:15" data-popup="popup" data-duration="114" data-start="21:15" data-end="23:09" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 16 (Wheelchair Accessible)" data-is-online="1">21:15</a><i class="WEEK ">G</i>
|
148
|
+
</li>
|
149
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightgreen WEEK_ISBARGIN WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/RUQzRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Bargain - book Run All Night on 17/03/2015 21:15" data-popup="popup" data-duration="114" data-start="21:15" data-end="23:09" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 11 (Wheelchair Accessible)" data-is-online="1">21:15</a></li> </ul>
|
150
|
+
</div>
|
151
|
+
<div class="content-container times containerWEEK">
|
152
|
+
<div class="presentation-info week">
|
153
|
+
<strong>Wednesday</strong><br>18 Mar</div>
|
154
|
+
<ul class="unstyled inline">
|
155
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/REMzRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Super Saver - book Run All Night on 18/03/2015 13:00" data-popup="popup" data-duration="114" data-start="13:00" data-end="14:54" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 11 (Wheelchair Accessible)" data-is-online="1">13:00</a></li>
|
156
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_GALLERY WEEK_2D WEEK_GENRE_7 show">
|
157
|
+
<a href="https://www.odeon.co.uk/booking/init/NDc0RjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Super Saver - book Run All Night on 18/03/2015 15:45" data-popup="popup" data-duration="114" data-start="15:45" data-end="17:39" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 16 (Wheelchair Accessible)" data-is-online="1">15:45</a><i class="WEEK ">G</i>
|
158
|
+
</li>
|
159
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/M0QzRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Super Saver - book Run All Night on 18/03/2015 15:45" data-popup="popup" data-duration="114" data-start="15:45" data-end="17:39" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 11 (Wheelchair Accessible)" data-is-online="1">15:45</a></li>
|
160
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_DBOX WEEK_DBOX WEEK_2D WEEK_GENRE_7 show">
|
161
|
+
<a href="https://www.odeon.co.uk/booking/init/REEyRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 18/03/2015 17:30" data-popup="popup" data-duration="114" data-start="17:30" data-end="19:24" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">17:30</a><i class="WEEK small ">D-Box</i>
|
162
|
+
</li>
|
163
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_GALLERY WEEK_2D WEEK_GENRE_7 show">
|
164
|
+
<a href="https://www.odeon.co.uk/booking/init/QTc0RjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 18/03/2015 18:30" data-popup="popup" data-duration="114" data-start="18:30" data-end="20:24" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 16 (Wheelchair Accessible)" data-is-online="1">18:30</a><i class="WEEK ">G</i>
|
165
|
+
</li>
|
166
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/OUQzRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 18/03/2015 18:30" data-popup="popup" data-duration="114" data-start="18:30" data-end="20:24" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 11 (Wheelchair Accessible)" data-is-online="1">18:30</a></li>
|
167
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_DBOX WEEK_DBOX WEEK_2D WEEK_GENRE_7 show">
|
168
|
+
<a href="https://www.odeon.co.uk/booking/init/M0IyRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 18/03/2015 20:15" data-popup="popup" data-duration="114" data-start="20:15" data-end="22:09" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 3 (Wheelchair Accessible)" data-is-online="1">20:15</a><i class="WEEK small ">D-Box</i>
|
169
|
+
</li>
|
170
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_GALLERY WEEK_2D WEEK_GENRE_7 show">
|
171
|
+
<a href="https://www.odeon.co.uk/booking/init/MDg0RjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 18/03/2015 21:15" data-popup="popup" data-duration="114" data-start="21:15" data-end="23:09" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 16 (Wheelchair Accessible)" data-is-online="1">21:15</a><i class="WEEK ">G</i>
|
172
|
+
</li>
|
173
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/RkQzRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 18/03/2015 21:15" data-popup="popup" data-duration="114" data-start="21:15" data-end="23:09" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 11 (Wheelchair Accessible)" data-is-online="1">21:15</a></li> </ul>
|
174
|
+
</div>
|
175
|
+
<div class="content-container times containerWEEK">
|
176
|
+
<div class="presentation-info week">
|
177
|
+
<strong>Thursday</strong><br>19 Mar</div>
|
178
|
+
<ul class="unstyled inline">
|
179
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/RTQ0RjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Super Saver - book Run All Night on 19/03/2015 13:00" data-popup="popup" data-duration="114" data-start="13:00" data-end="14:54" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 14 (Wheelchair Accessible)" data-is-online="1">13:00</a></li>
|
180
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-lightblue WEEK_ISSUPERSAVER WEEK_15 WEEK_AFTERNOON WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/RjQ0RjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Super Saver - book Run All Night on 19/03/2015 15:45" data-popup="popup" data-duration="114" data-start="15:45" data-end="17:39" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 14 (Wheelchair Accessible)" data-is-online="1">15:45</a></li>
|
181
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/RUUyRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 19/03/2015 17:30" data-popup="popup" data-duration="114" data-start="17:30" data-end="19:24" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">17:30</a></li>
|
182
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/MDU0RjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 19/03/2015 18:30" data-popup="popup" data-duration="114" data-start="18:30" data-end="20:24" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 14 (Wheelchair Accessible)" data-is-online="1">18:30</a></li>
|
183
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/RkUyRjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 19/03/2015 20:15" data-popup="popup" data-duration="114" data-start="20:15" data-end="22:09" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 4 (Wheelchair Accessible)" data-is-online="1">20:15</a></li>
|
184
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_15 WEEK_EVENING WEEK_2D WEEK_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/MTU0RjIwMDAwMjNTRVVUVFdFIzE3MSMxNTc2OA==/" class="performance-detail" title="Peak - book Run All Night on 19/03/2015 21:15" data-popup="popup" data-duration="114" data-start="21:15" data-end="23:09" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 14 (Wheelchair Accessible)" data-is-online="1">21:15</a></li> </ul>
|
185
|
+
</div>
|
186
|
+
<div class="content-container times stopper performances-WEEK _26659"></div>
|
187
|
+
</div>
|
188
|
+
</div>
|
189
|
+
</div>
|
190
|
+
<!-- <div class="content-container times stopper performances-WEEK _26659"></div>-->
|
191
|
+
<div class="content-container gallery-key performances-WEEK _26659">
|
192
|
+
<ul class="unstyled inline">
|
193
|
+
<li><img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/cached/static/img/gallery-logo-key.png"></li>
|
194
|
+
<li><img src="http://m.odeon.co.uk/_uploads/cached/static/img/gallery-img-key.png"></li>
|
195
|
+
<li>
|
196
|
+
<strong>G indicates Gallery showing (over 18s only)</strong> Access to a <strong>VIP bar</strong> area,<br>
|
197
|
+
<strong>unlimited popcorn, nachos, soft drinks</strong> and the <strong>best seats in the house.</strong>
|
198
|
+
</li>
|
199
|
+
</ul>
|
200
|
+
</div>
|
201
|
+
<div class="content-container white performances-WEEK _26659"></div>
|
202
|
+
</div>
|
203
|
+
</div>
|
@@ -0,0 +1,59 @@
|
|
1
|
+
<div id="26673" class="film-detail WEEK">
|
2
|
+
<div class="content-container film _WEEK" id="film-26673">
|
3
|
+
<div class="grad-hor">
|
4
|
+
<a href="/films/autism_friendly_home/100792/"><img src="http://m.odeon.co.uk/_uploads/asset_management/70x108_4802247d8853b40501f9351b31c9f6a3.jpg"></a>
|
5
|
+
<div class="presentation-info">
|
6
|
+
<h4><a href="/films/autism_friendly_home/100792/">Autism Friendly - Home</a></h4>
|
7
|
+
<a href="/film-classifications/" alt="U" title="More about film classifications"><div class="cert-icon-uk-U-small"></div></a> <span class="description">
|
8
|
+
</span>
|
9
|
+
</div>
|
10
|
+
<p><strong>When Earth is taken over by the overly-confident Boov, an alien race in search of a new place to call home, all humans are promptly relocated, while all Boov get busy reorganizing the planet.</strong></p>
|
11
|
+
<div class="presentation-info">
|
12
|
+
<div data-rating-master-id="100792" data-return-to="/showtimes/week/71/" class="buzz-rating-container buzz-rating rating-icon-buzz-light-small-inactive">
|
13
|
+
<div class="rating-icon-buzz-small-active s4" data-rating="4">
|
14
|
+
<div class="rate-over s1"></div>
|
15
|
+
<div class="rate-over s2"></div>
|
16
|
+
<div class="rate-over s3"></div>
|
17
|
+
<div class="rate-over s4"></div>
|
18
|
+
<div class="rate-over s5"></div>
|
19
|
+
</div>
|
20
|
+
<i class="rating-icon-buzz-small-icon"></i>
|
21
|
+
</div>
|
22
|
+
<span class="description"><strong>Film length: 94 mins</strong></span>
|
23
|
+
</div>
|
24
|
+
<p class="description">Mild threat, slapstick.</p>
|
25
|
+
</div>
|
26
|
+
<div class="info-corner">
|
27
|
+
<div class="img-bundle">
|
28
|
+
<div class="film-icon-WEEK feature-icon-light-2d-medium WEEK_2D" data-schedule="2D" data-film="26673"></div> </div>
|
29
|
+
<div class="btn-group">
|
30
|
+
<a href="http://odeon.trailer.cineweb.de/home1.mp4" class="btn btn-primary trailer kkvideo-trigger" data-return-to="/showtimes/week/71/" data-film-id="100792" data-showbooknowbutton="false" data-filmpage="false"><i class="film-icon-btn-play"></i>Trailer</a>
|
31
|
+
<button class="btn btn-primary trailer dropdown-toggle" data-toggle="dropdown">
|
32
|
+
<span class="caret"></span>
|
33
|
+
</button>
|
34
|
+
<ul class="dropdown-menu">
|
35
|
+
<li><a href="#">Add to Playlist</a></li>
|
36
|
+
</ul>
|
37
|
+
</div> </div>
|
38
|
+
</div>
|
39
|
+
<div id="performances-WEEK-26673" class="content-container times-all _WEEK">
|
40
|
+
<div class="accordion-group times-all performances-WEEK _26673" id="tech-26673-0">
|
41
|
+
<div class="content-container tech accordion-heading _WEEK">
|
42
|
+
<a data-toggle="collapse" data-parent="#tech-26673-0-WEEK" class="accordion-toggle" href="#collapse-26673-0-WEEK">in 2D</a><a href="#" class="icon-info-blue info-icon-form-info-small" data-toggle="popover" title="" data-placement="bottom" data-content="2D means two dimensional. No 3D glasses required. Sit back, relax and enjoy."></a>
|
43
|
+
</div>
|
44
|
+
<div id="collapse-26673-0-WEEK" class="accordion-body in collapse" style="height: auto;">
|
45
|
+
<div class="accordion-inner">
|
46
|
+
<div class="content-container times containerWEEK">
|
47
|
+
<div class="presentation-info week">
|
48
|
+
<strong>Sunday</strong><br>15 Mar</div>
|
49
|
+
<ul class="unstyled inline">
|
50
|
+
<li class="WEEK WEEK_WHEELCHAIR performance-blue WEEK_ISPEAK WEEK_U WEEK_MORNING WEEK_2D WEEK_FREELISTSUSPENDED WEEK_2D WEEK_GENRE_3 show"><a href="https://www.odeon.co.uk/booking/init/QTBCNDEwMDAwMjNVRFBETVhHIzcxIzEwMDc5Mg==/" class="performance-detail" title="Peak - book Autism Friendly - Home on 15/03/2015 11:30" data-popup="popup" data-duration="94" data-start="11:30" data-end="13:04" data-status="normal" data-type="WEEK" data-auditorium-info="Screen 8 (Wheelchair Accessible)" data-is-online="1">11:30</a></li> </ul>
|
51
|
+
</div>
|
52
|
+
<div class="content-container times stopper performances-WEEK _26673"></div>
|
53
|
+
</div>
|
54
|
+
</div>
|
55
|
+
</div>
|
56
|
+
<!-- <div class="content-container times stopper performances-WEEK _26673"></div>-->
|
57
|
+
<div class="content-container white performances-WEEK _26673"></div>
|
58
|
+
</div>
|
59
|
+
</div>
|