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
@@ -15,7 +15,7 @@
|
|
15
15
|
|
16
16
|
(function(){
|
17
17
|
|
18
|
-
if (window.isMobileDevice()) {
|
18
|
+
if (!window.isMobileDevice()) {
|
19
19
|
return;
|
20
20
|
}
|
21
21
|
|
@@ -69,22 +69,21 @@
|
|
69
69
|
|
70
70
|
<!-- Le styles -->
|
71
71
|
|
72
|
-
<link href="/css/
|
73
|
-
<!--[if IE]
|
74
|
-
<!--[if IE]
|
75
|
-
<!--[if IE]
|
72
|
+
<link href="/css/main_t1426242250.css" media="all" rel="stylesheet" type="text/css">
|
73
|
+
<!--[if IE]><link href="/css/main0_t1426242250.css" media="all" rel="stylesheet" type="text/css"><![endif]-->
|
74
|
+
<!--[if IE]><link href="/css/main1_t1426242250.css" media="all" rel="stylesheet" type="text/css"><![endif]-->
|
75
|
+
<!--[if IE]><link href="/css/main2_t1426242250.css" media="all" rel="stylesheet" type="text/css"><![endif]-->
|
76
76
|
<link href="/images/ico/apple-touch-icon-144-precomposed.png" rel="apple-touch-icon-precomposed">
|
77
77
|
<link href="/images/ico/apple-touch-icon-114-precomposed.png" rel="apple-touch-icon-precomposed">
|
78
78
|
<link href="/images/ico/apple-touch-icon-72-precomposed.png" rel="apple-touch-icon-precomposed">
|
79
79
|
<link href="/images/ico/apple-touch-icon-57-precomposed.png" rel="apple-touch-icon-precomposed">
|
80
80
|
<link href="/images/ico/favicon.png" rel="shortcut icon" type="image/vnd.microsoft.icon">
|
81
|
-
<!--[if lte IE 9]
|
81
|
+
<!--[if lte IE 9]><link href="/css/ie9.css" media="all" rel="stylesheet" type="text/css"><![endif]-->
|
82
82
|
<script type="text/javascript">var website_app_locale = 'uk';</script>
|
83
83
|
<script type="text/javascript">var site_protocol = (('https:' == document.location.protocol) ? 'https://' : 'http://') </script>
|
84
|
-
<script type="text/javascript">var media_host = "http://
|
84
|
+
<script type="text/javascript">var media_host = "http://odeon-fastly.krankikom.de.global.prod.fastly.net/";</script>
|
85
85
|
<!-- Scripts -->
|
86
|
-
<script type="text/javascript" src="/build/js/odeon.min.
|
87
|
-
<!--[if !IE]><script type="text/javascript" src="/source/js/vendor/jwplayer.html5.js"></script><![endif]-->
|
86
|
+
<script type="text/javascript" src="/build/js/odeon.min.03132015102356.jgz"></script>
|
88
87
|
<!--[if lt IE 9]><script type="text/javascript" src="/static/js/vendor/selectivizr-min.js"></script><![endif]-->
|
89
88
|
<!--[if lt IE 9]><script type="text/javascript" src="/static/js/vendor/IE9.js"></script><![endif]--> <!--[if !IE]><!--><script>
|
90
89
|
if (/*@cc_on!@*/false && document.documentMode === 10) {
|
@@ -331,7 +330,7 @@
|
|
331
330
|
<option value="133">Liverpool Switch Island</option>
|
332
331
|
<option value="213">Llanelli</option>
|
333
332
|
<option value="105">London - Leicester Square</option>
|
334
|
-
<option value="139">London - West End</option>
|
333
|
+
<option value="139">London - West End - Now closed</option>
|
335
334
|
<option value="183">Loughborough</option>
|
336
335
|
<option value="10">Maidenhead</option>
|
337
336
|
<option value="109">Maidstone</option>
|
@@ -339,7 +338,7 @@
|
|
339
338
|
<option value="110">Mansfield</option>
|
340
339
|
<option value="111">Marble Arch</option>
|
341
340
|
<option value="174">Metrocentre</option>
|
342
|
-
<option value="
|
341
|
+
<option value="218">Milton Keynes Stadium</option>
|
343
342
|
<option value="112">Muswell Hill</option>
|
344
343
|
<option value="184">Newark</option>
|
345
344
|
<option value="13">Norwich</option>
|
@@ -453,174 +452,127 @@
|
|
453
452
|
<div class="selectpicker select-icon-select">
|
454
453
|
<select id="your-film" data-size="10" name="filmMasterId">
|
455
454
|
<option value="0">Select a specific film</option>
|
456
|
-
<option value="
|
457
|
-
<option value="
|
458
|
-
<option value="
|
459
|
-
<option value="
|
460
|
-
<option value="
|
461
|
-
<option value="
|
462
|
-
<option value="
|
463
|
-
<option value="
|
464
|
-
<option value="
|
465
|
-
<option value="15125" >Begin Again</option>
|
466
|
-
<option value="15450" >Berliner Philharmoniker 2014 (Bernard Haitink)</option>
|
455
|
+
<option value="4025" >A Clockwork Orange</option>
|
456
|
+
<option value="15758" >A Most Violent Year</option>
|
457
|
+
<option value="15822" >Ali Kundilli</option>
|
458
|
+
<option value="15748" >American Sniper</option>
|
459
|
+
<option value="15840" >Andre Rieu's 2015 Maastricht Concert</option>
|
460
|
+
<option value="15825" >Appropriate Behaviour</option>
|
461
|
+
<option value="100789" >Autism Friendly - Focus</option>
|
462
|
+
<option value="100792" >Autism Friendly - Home</option>
|
463
|
+
<option value="2209" >Bad Boys</option>
|
467
464
|
<option value="15451" >Berliner Philharmoniker 2014 (Mariss Jansons)</option>
|
468
|
-
<option value="
|
469
|
-
<option value="
|
470
|
-
<option value="
|
465
|
+
<option value="15286" >Big Hero 6</option>
|
466
|
+
<option value="15724" >Birdman</option>
|
467
|
+
<option value="15653" >Blade Runner: The Final Cut (re:2015)</option>
|
468
|
+
<option value="39" >Bloodsport</option>
|
471
469
|
<option value="15299" >Bolshoi Live: Ivan The Terrible</option>
|
472
|
-
<option value="15298" >Bolshoi Live: Swan Lake</option>
|
473
|
-
<option value="15296" >Bolshoi Live: The Legend Of Love</option>
|
474
|
-
<option value="15297" >Bolshoi Live: The Nutcracker</option>
|
475
470
|
<option value="15095" >Boyhood</option>
|
476
|
-
<option value="
|
477
|
-
<option value="
|
478
|
-
<option value="
|
479
|
-
<option value="
|
480
|
-
<option value="
|
481
|
-
<option value="
|
482
|
-
<option value="
|
483
|
-
<option value="
|
484
|
-
<option value="
|
485
|
-
<option value="
|
486
|
-
<option value="
|
487
|
-
<option value="
|
488
|
-
<option value="
|
489
|
-
<option value="
|
490
|
-
<option value="
|
491
|
-
<option value="
|
492
|
-
<option value="
|
493
|
-
<option value="
|
494
|
-
<option value="
|
495
|
-
<option value="
|
496
|
-
<option value="
|
497
|
-
<option value="
|
498
|
-
<option value="
|
499
|
-
<option value="
|
500
|
-
<option value="
|
501
|
-
<option value="
|
502
|
-
<option value="
|
503
|
-
<option value="
|
471
|
+
<option value="15741" >Cake</option>
|
472
|
+
<option value="15829" >Carsi Pazar</option>
|
473
|
+
<option value="15824" >Catch Me Daddy</option>
|
474
|
+
<option value="15179" >Chappie</option>
|
475
|
+
<option value="100791" >Cinderella</option>
|
476
|
+
<option value="2124" >Clerks</option>
|
477
|
+
<option value="15835" >Difret</option>
|
478
|
+
<option value="15806" >Drake: Homecoming</option>
|
479
|
+
<option value="15804" >Elaine Paige + Live Element</option>
|
480
|
+
<option value="15243" >Eno Carmen</option>
|
481
|
+
<option value="15242" >ENO Pirates Of Penzance</option>
|
482
|
+
<option value="12683" >Enter The Dragon</option>
|
483
|
+
<option value="15543" >Exhibition On Screen: The Impressionists</option>
|
484
|
+
<option value="15542" >Exhibition On Screen: Vincent Van Gogh</option>
|
485
|
+
<option value="15086" >Exodus: Gods And Kings</option>
|
486
|
+
<option value="100790" >Fast & Furious 6 & 7 Double Bill</option>
|
487
|
+
<option value="14646" >Fast & Furious 7</option>
|
488
|
+
<option value="14725" >Fifty Shades Of Grey</option>
|
489
|
+
<option value="15871" >Fireman</option>
|
490
|
+
<option value="15799" >Focus</option>
|
491
|
+
<option value="14869" >Foxcatcher</option>
|
492
|
+
<option value="15700" >Get Santa</option>
|
493
|
+
<option value="15795" >Globe On Screen: Antony & Cleopatra</option>
|
494
|
+
<option value="15794" >Globe On Screen: Julius Caesar</option>
|
495
|
+
<option value="15796" >Globe On Screen: The Comedy Of Errors</option>
|
496
|
+
<option value="15793" >Globe On Screen: Titus Andronicus</option>
|
497
|
+
<option value="2111" >Goldeneye</option>
|
498
|
+
<option value="2449" >Heat</option>
|
499
|
+
<option value="100798" >High Tide with Live Q&A</option>
|
500
|
+
<option value="15122" >Home</option>
|
501
|
+
<option value="1120" >Hook</option>
|
504
502
|
<option value="11916" >How To Train Your Dragon</option>
|
505
503
|
<option value="15182" >How To Train Your Dragon 2</option>
|
506
|
-
<option value="
|
507
|
-
<option value="
|
504
|
+
<option value="13530" >Hubble</option>
|
505
|
+
<option value="15815" >Hyena</option>
|
506
|
+
<option value="15172" >Interstellar</option>
|
507
|
+
<option value="15723" >Into The Woods</option>
|
508
508
|
<option value="15344" >Island Of Lemurs: Madagascar</option>
|
509
|
-
<option value="
|
510
|
-
<option value="
|
511
|
-
<option value="
|
512
|
-
<option value="
|
513
|
-
<option value="
|
514
|
-
<option value="
|
515
|
-
<option value="
|
516
|
-
<option value="
|
517
|
-
<option value="
|
518
|
-
<option value="15067" >Lucy</option>
|
519
|
-
<option value="15292" >Madama Butterfly On Sydney Harbour - Opera Australia</option>
|
520
|
-
<option value="15443" >Made In Egypt</option>
|
521
|
-
<option value="15265" >Magic In The Moonlight</option>
|
522
|
-
<option value="13976" >Maleficent</option>
|
523
|
-
<option value="15444" >Mary Kom</option>
|
524
|
-
<option value="15152" >MET Opera - Carmen (Live) 2014</option>
|
509
|
+
<option value="15718" >It Follows</option>
|
510
|
+
<option value="15017" >Jerusalem</option>
|
511
|
+
<option value="15173" >Jupiter Ascending</option>
|
512
|
+
<option value="15148" >Kill The Messenger</option>
|
513
|
+
<option value="15170" >Kingsman: The Secret Service</option>
|
514
|
+
<option value="2060" >Leon</option>
|
515
|
+
<option value="597" >Lethal Weapon</option>
|
516
|
+
<option value="15787" >Love Is Strange</option>
|
517
|
+
<option value="15728" >Maxine Peake as Hamlet</option>
|
525
518
|
<option value="15159" >MET Opera - Cavalleria Rusticana/Pagliacci (Live) 2015</option>
|
526
|
-
<option value="15154" >MET Opera - Die Meistersinger Von Nurnberg (Live) 2014</option>
|
527
|
-
<option value="15373" >Met Opera - Ii Barbiere Di Siviglia</option>
|
528
|
-
<option value="15157" >MET Opera - Iolanta/Duke Bluebeard's Castle (Live) 2015</option>
|
529
519
|
<option value="15158" >MET Opera - La Donna Del Lago (Live) 2015</option>
|
530
|
-
<option value="
|
531
|
-
<option value="
|
532
|
-
<option value="
|
533
|
-
<option value="15155" >MET Opera - The Merry Widow (Live) 2015</option>
|
534
|
-
<option value="15200" >Million Dollar Arm</option>
|
535
|
-
<option value="15395" >Mood Indigo</option>
|
536
|
-
<option value="14468" >Mr. Peabody And Sherman</option>
|
537
|
-
<option value="14738" >Mrs. Brown's Boys</option>
|
538
|
-
<option value="15029" >Mrs. Brown's Boys D'movie</option>
|
539
|
-
<option value="14604" >Muppets Most Wanted</option>
|
520
|
+
<option value="100795" >MK - Kids Screen - Shaun The Sheep</option>
|
521
|
+
<option value="100796" >MK - Kids Screen - Big Hero 6</option>
|
522
|
+
<option value="15186" >Mr. Turner</option>
|
540
523
|
<option value="6244" >Mystery Film Monday</option>
|
541
|
-
<option value="
|
542
|
-
<option value="
|
543
|
-
<option value="
|
544
|
-
<option value="
|
545
|
-
<option value="
|
546
|
-
<option value="100721" >NT Live - Frankenstein Encore (Jonny Lee Miller As Creature)</option>
|
547
|
-
<option value="15388" >Nt Live: A Streetcar Named Desire (Young Vic)</option>
|
548
|
-
<option value="100740" >Nt Live: A Streetcar Named Desire (young Vic) (encore)</option>
|
549
|
-
<option value="15336" >Nt Live: John</option>
|
550
|
-
<option value="100739" >Nt Live: Medea (encore)</option>
|
551
|
-
<option value="15337" >Nt Live: Treasure Island</option>
|
552
|
-
<option value="15431" >Obvious Child</option>
|
553
|
-
<option value="15371" >One Direction: Where We Are - Concert Movie</option>
|
554
|
-
<option value="15415" >One Night In Istanbul</option>
|
524
|
+
<option value="15091" >Night At The Museum: Secret Of The Tomb</option>
|
525
|
+
<option value="15788" >NT Live: A View From The Bridge</option>
|
526
|
+
<option value="15802" >NT Live: Everyman</option>
|
527
|
+
<option value="15587" >NT Live: Man And Superman</option>
|
528
|
+
<option value="15586" >NT Live: The Hard Problem</option>
|
555
529
|
<option value="6611" >Organ Concert</option>
|
556
|
-
<option value="
|
557
|
-
<option value="
|
558
|
-
<option value="
|
559
|
-
<option value="
|
560
|
-
<option value="15432" >Raja Natwarlal</option>
|
561
|
-
<option value="15139" >ROH - Andrea Chenier (Live) 2015</option>
|
562
|
-
<option value="100741" >ROH - Andrea Chenier 2015 (encore)</option>
|
563
|
-
<option value="15140" >ROH - Der Fliegende Hollander (Live) 2015</option>
|
564
|
-
<option value="100742" >Roh - Der Fliegende Hollander 2015 (encore)</option>
|
530
|
+
<option value="15564" >Paddington</option>
|
531
|
+
<option value="15680" >Project Almanac</option>
|
532
|
+
<option value="2033" >Pulp Fiction</option>
|
533
|
+
<option value="6528" >Rocky</option>
|
565
534
|
<option value="15145" >ROH - Guillaume Tell (Live) 2015</option>
|
566
|
-
<option value="15136" >ROH - I Due Foscari (Live) 2014</option>
|
567
|
-
<option value="100744" >ROH - I Due Foscari 2014 (encore)</option>
|
568
|
-
<option value="15137" >ROH - L'elisir D'amore (Live) 2014</option>
|
569
|
-
<option value="100745" >ROH - L'elisir D'amore 2014 (encore)</option>
|
570
535
|
<option value="15144" >ROH - La Boheme (Live) 2015</option>
|
571
536
|
<option value="100746" >ROH - La Boheme 2015 (encore)</option>
|
572
537
|
<option value="15142" >ROH - Rise And Fall Of The City Of Mahagonny (Live) 2015</option>
|
573
538
|
<option value="100747" >ROH - Rise And Fall Of The City Of Mahagonny 2015 (encore)</option>
|
574
|
-
<option value="
|
575
|
-
<option value="
|
576
|
-
<option value="
|
577
|
-
<option value="
|
578
|
-
<option value="
|
579
|
-
<option value="
|
580
|
-
<option value="
|
581
|
-
<option value="
|
582
|
-
<option value="
|
583
|
-
<option value="
|
584
|
-
<option value="
|
585
|
-
<option value="
|
586
|
-
<option value="
|
539
|
+
<option value="15706" >RSC - The Merchant Of Venice</option>
|
540
|
+
<option value="15768" >Run All Night</option>
|
541
|
+
<option value="10940" >Sea Monsters - A Prehistoric Adventure 3D IMAX</option>
|
542
|
+
<option value="15882" >Selam Bahara Yolculuk</option>
|
543
|
+
<option value="15394" >Selma</option>
|
544
|
+
<option value="15813" >Sevlimi Tehlikeli</option>
|
545
|
+
<option value="15274" >Shaun The Sheep</option>
|
546
|
+
<option value="15883" >Son Mektup (SFL - Subtitled Foreign Language)</option>
|
547
|
+
<option value="11893" >Space Station</option>
|
548
|
+
<option value="15814" >Still Alice</option>
|
549
|
+
<option value="15817" >Suite Francaise</option>
|
550
|
+
<option value="15178" >Taken 3</option>
|
551
|
+
<option value="15568" >Testament Of Youth</option>
|
552
|
+
<option value="15130" >The Avengers: Age Of Ultron</option>
|
553
|
+
<option value="15677" >The Boy Next Door</option>
|
587
554
|
<option value="14602" >The Dark Knight: All Nighter</option>
|
588
|
-
<option value="
|
555
|
+
<option value="15360" >The Divergent Series: Insurgent</option>
|
589
556
|
<option value="14678" >The Expendables 3</option>
|
590
|
-
<option value="
|
591
|
-
<option value="
|
592
|
-
<option value="
|
593
|
-
<option value="15405" >The Guest</option>
|
594
|
-
<option value="15194" >The House Of Magic</option>
|
595
|
-
<option value="15367" >The Hundred-foot Journey</option>
|
596
|
-
<option value="15195" >The Inbetweeners 2</option>
|
597
|
-
<option value="15436" >The Keeper Of Lost Causes</option>
|
598
|
-
<option value="15100" >The Nut Job</option>
|
599
|
-
<option value="15037" >The Other Woman</option>
|
600
|
-
<option value="15263" >The Riot Club</option>
|
601
|
-
<option value="15202" >The Rover</option>
|
602
|
-
<option value="15138" >The Royal Ballet - Alice's Adventures In Wonderland (Live) 2014</option>
|
603
|
-
<option value="100751" >The Royal Ballet - Alice's Adventures In Wonderland 2014 (encore)</option>
|
557
|
+
<option value="14941" >The Grand Budapest Hotel</option>
|
558
|
+
<option value="15712" >The Grandmaster</option>
|
559
|
+
<option value="15262" >The Imitation Game</option>
|
604
560
|
<option value="15143" >The Royal Ballet - La Fille Mal Gardee (Live) 2015</option>
|
605
561
|
<option value="100748" >The Royal Ballet - La Fille Mal Gardee 2015 (encore)</option>
|
606
|
-
<option value="13673" >The Royal Ballet - La Fille Mal Gardee Live</option>
|
607
|
-
<option value="15135" >The Royal Ballet - Manon (Live) 2014</option>
|
608
|
-
<option value="100749" >The Royal Ballet - Manon 2014 (encore)</option>
|
609
562
|
<option value="15141" >The Royal Ballet - Swan Lake (Live) 2015</option>
|
610
563
|
<option value="100750" >The Royal Ballet - Swan Lake 2015 (encore)</option>
|
611
|
-
<option value="
|
612
|
-
<option value="
|
613
|
-
<option value="
|
614
|
-
<option value="
|
615
|
-
<option value="
|
616
|
-
<option value="
|
617
|
-
<option value="
|
618
|
-
<option value="
|
619
|
-
<option value="
|
620
|
-
<option value="
|
621
|
-
<option value="
|
622
|
-
<option value="
|
623
|
-
<option value="15434" >Wish I Was Here</option>
|
564
|
+
<option value="15177" >The Second Best Exotic Marigold Hotel</option>
|
565
|
+
<option value="10619" >The Silence Of The Lambs</option>
|
566
|
+
<option value="15107" >The Theory Of Everything</option>
|
567
|
+
<option value="15354" >The Wedding Ringer</option>
|
568
|
+
<option value="15273" >Tinker Bell And The Legend Of The Neverbeast</option>
|
569
|
+
<option value="15096" >Unbroken</option>
|
570
|
+
<option value="11794" >Under The Sea</option>
|
571
|
+
<option value="15801" >Unfinished Business</option>
|
572
|
+
<option value="15425" >Whiplash</option>
|
573
|
+
<option value="15826" >White God</option>
|
574
|
+
<option value="15306" >Wild</option>
|
575
|
+
<option value="15830" >X+Y</option>
|
624
576
|
</select>
|
625
577
|
</div>
|
626
578
|
<input type="submit" class="btn darkblue pull-right" value="Go" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="What's on" data-eventlabel="film-drop-down" >
|
@@ -634,7 +586,7 @@
|
|
634
586
|
<ul class="unstyled" role="menu">
|
635
587
|
<li><a href="/kids/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="What's on" data-eventlabel="kids" ><i class="nav-icon-arrow-blue"></i><strong>ODEON Kids</strong></a></li>
|
636
588
|
<li><a href="/newbies/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="What's on" data-eventlabel="newbies" ><i class="nav-icon-arrow-blue"></i><strong>ODEON Newbies</strong></a></li>
|
637
|
-
<li><a href="/
|
589
|
+
<li><a href="/silvercinema/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="What's on" data-eventlabel="silvercinema" ><i class="nav-icon-arrow-blue"></i><strong>ODEON Silver Cinema</strong></a></li>
|
638
590
|
<li><a href="/bollywood/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="What's on" data-eventlabel="bollywood" ><i class="nav-icon-arrow-blue"></i><strong>Bollywood</strong></a></li>
|
639
591
|
<li><a href="/back-british-film/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="What's on" data-eventlabel="back-british-film" ><i class="nav-icon-arrow-blue"></i><strong>Back British Film</strong></a></li>
|
640
592
|
</ul>
|
@@ -652,12 +604,20 @@
|
|
652
604
|
<h2>Top 5 Films Now Booking</h2>
|
653
605
|
<ul class="unstyled" role="menu">
|
654
606
|
<li class="pull-left"><img
|
655
|
-
src="http://m.odeon.co.uk/_uploads/asset_management/
|
656
|
-
<h3><a href="http://www.odeon.co.uk/films/
|
607
|
+
src="http://m.odeon.co.uk/_uploads/asset_management/70x108_4ce02a732d4a4d57011886fff8637cbd.jpg" />
|
608
|
+
<h3><a href="http://www.odeon.co.uk/films/run_all_night/15768/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="What's on" data-eventlabel="top-film1" >Run All Night</a></h3><a href="/film-classifications/" alt="15" title="More about film classifications"><div class="cert-icon-uk-15-small"></div></a> <div data-rating-master-id='15768' data-return-to='/user/tools/varnish/L2NpbmVtYXMvb2Rlb24vMTA1Lw==/' class="star-rating-container star-rating rating-icon-star-dark-xtrasmall-inactive">
|
609
|
+
<div class="rating-icon-star-xtrasmall-active s7" data-rating="7">
|
610
|
+
<div class="rate-over s1"></div>
|
611
|
+
<div class="rate-over s2"></div>
|
612
|
+
<div class="rate-over s3"></div>
|
613
|
+
<div class="rate-over s4"></div>
|
614
|
+
<div class="rate-over s5"></div>
|
615
|
+
</div>
|
616
|
+
</div> </li>
|
657
617
|
<li class="pull-left"><img
|
658
|
-
src="http://m2.odeon.co.uk/_uploads/asset_management/
|
659
|
-
<h3><a href="http://www.odeon.co.uk/films/
|
660
|
-
<div class="rating-icon-star-xtrasmall-active
|
618
|
+
src="http://m2.odeon.co.uk/_uploads/asset_management/70x108_538c352747af97a0c8c89063b0123444.jpg" />
|
619
|
+
<h3><a href="http://www.odeon.co.uk/films/the_second_best_exotic_marigold_hotel/15177/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="What's on" data-eventlabel="top-film2" >The Second Best Exotic Marigold Hotel</a></h3><a href="/film-classifications/" alt="PG" title="More about film classifications"><div class="cert-icon-uk-PG-small"></div></a> <div data-rating-master-id='15177' data-return-to='/user/tools/varnish/L2NpbmVtYXMvb2Rlb24vMTA1Lw==/' class="star-rating-container star-rating rating-icon-star-dark-xtrasmall-inactive">
|
620
|
+
<div class="rating-icon-star-xtrasmall-active s8" data-rating="8">
|
661
621
|
<div class="rate-over s1"></div>
|
662
622
|
<div class="rate-over s2"></div>
|
663
623
|
<div class="rate-over s3"></div>
|
@@ -666,15 +626,31 @@
|
|
666
626
|
</div>
|
667
627
|
</div> </li>
|
668
628
|
<li class="pull-left"><img
|
669
|
-
src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/asset_management/
|
670
|
-
<h3><a href="http://www.odeon.co.uk/films/
|
629
|
+
src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/asset_management/70x108_78ad5db3e95468533d7591f2f2f3d097.jpg" />
|
630
|
+
<h3><a href="http://www.odeon.co.uk/films/focus/15799/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="What's on" data-eventlabel="top-film3" >Focus</a></h3><a href="/film-classifications/" alt="15" title="More about film classifications"><div class="cert-icon-uk-15-small"></div></a> <div data-rating-master-id='15799' data-return-to='/user/tools/varnish/L2NpbmVtYXMvb2Rlb24vMTA1Lw==/' class="star-rating-container star-rating rating-icon-star-dark-xtrasmall-inactive">
|
631
|
+
<div class="rating-icon-star-xtrasmall-active s7" data-rating="7">
|
632
|
+
<div class="rate-over s1"></div>
|
633
|
+
<div class="rate-over s2"></div>
|
634
|
+
<div class="rate-over s3"></div>
|
635
|
+
<div class="rate-over s4"></div>
|
636
|
+
<div class="rate-over s5"></div>
|
637
|
+
</div>
|
638
|
+
</div> </li>
|
671
639
|
<li class="pull-left"><img
|
672
|
-
src="http://odeon
|
673
|
-
<h3><a href="http://www.odeon.co.uk/films/
|
640
|
+
src="http://m.odeon.co.uk/_uploads/asset_management/70x108_714694478b3cfc8f5c9a9e24632aa032.jpg" />
|
641
|
+
<h3><a href="http://www.odeon.co.uk/films/suite_francaise/15817/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="What's on" data-eventlabel="top-film4" >Suite Francaise</a></h3><a href="/film-classifications/" alt="15" title="More about film classifications"><div class="cert-icon-uk-15-small"></div></a> <div data-rating-master-id='15817' data-return-to='/user/tools/varnish/L2NpbmVtYXMvb2Rlb24vMTA1Lw==/' class="star-rating-container star-rating rating-icon-star-dark-xtrasmall-inactive">
|
642
|
+
<div class="rating-icon-star-xtrasmall-active s6" data-rating="6">
|
643
|
+
<div class="rate-over s1"></div>
|
644
|
+
<div class="rate-over s2"></div>
|
645
|
+
<div class="rate-over s3"></div>
|
646
|
+
<div class="rate-over s4"></div>
|
647
|
+
<div class="rate-over s5"></div>
|
648
|
+
</div>
|
649
|
+
</div> </li>
|
674
650
|
<li class="pull-left"><img
|
675
|
-
src="http://
|
676
|
-
<h3><a href="http://www.odeon.co.uk/films/
|
677
|
-
|
651
|
+
src="http://m2.odeon.co.uk/_uploads/asset_management/70x108_0141eed86c375d67af14731179996651.jpg" />
|
652
|
+
<h3><a href="http://www.odeon.co.uk/films/home/15122/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="What's on" data-eventlabel="top-film5" >Home</a></h3><a href="/film-classifications/" alt="U" title="More about film classifications"><div class="cert-icon-uk-U-small"></div></a> </li>
|
653
|
+
</ul>
|
678
654
|
</li>
|
679
655
|
</div>
|
680
656
|
</ul>
|
@@ -696,8 +672,8 @@
|
|
696
672
|
|
697
673
|
<li class="win-offers">
|
698
674
|
<ul class="unstyled" role="menu">
|
699
|
-
<li class="pull-left"><a href="/offers-and-promotions/
|
700
|
-
<li class="pull-right"><a href="/offers-and-promotions/
|
675
|
+
<li class="pull-left"><a href="/offers-and-promotions/win_a_trip_for_two_to_paris/182/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="Offers & Promotions" data-eventlabel="offer-1" ><img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/offers_competitions/460x260_3d2078081bbc45d754ae659131b34b34.jpg" /><span>Win a trip for two to Paris</span></a></li>
|
676
|
+
<li class="pull-right"><a href="/offers-and-promotions/win_a_trip_to_atlanta/180/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="Offers & Promotions" data-eventlabel="offer-2" ><img src="http://m.odeon.co.uk/_uploads/offers_competitions/460x260_4ab4bb5c2d31e8f9e94620f4132f0c39.jpg" /><span>Win a trip to Atlanta </span></a></li>
|
701
677
|
</ul>
|
702
678
|
</li>
|
703
679
|
|
@@ -705,7 +681,7 @@
|
|
705
681
|
</li>
|
706
682
|
<li class="span4 premiere nav-icon-divide-shadow-l">
|
707
683
|
<h2 class="logout">ODEON Première Club</h2>
|
708
|
-
<img class="logout" src="http://odeon
|
684
|
+
<img class="logout" src="http://m2.odeon.co.uk/_uploads/cached/static/img/premiere-card.png" />
|
709
685
|
<ul class="unstyled logout" role="menu">
|
710
686
|
<li><span>Join over two million members and start earning ODEON Points for doing something you love.</span></li>
|
711
687
|
<li class="pull-left"><a href="http://www.odeon.co.uk/odeon-premiere-club/" data-eventtracking data-eventcat="Navigation - Site Wide - Top Mega Nav" data-eventaction="Offers & Promotions" data-eventlabel="opc-find-out-more" ><i class="nav-icon-arrow-blue"></i><strong>Find out more</strong></a></li>
|
@@ -715,7 +691,7 @@
|
|
715
691
|
</li>
|
716
692
|
<li class="span4 cards">
|
717
693
|
<h2>Gift Cards</h2>
|
718
|
-
<img src="http://
|
694
|
+
<img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/cached/static/img/gift-card.png" />
|
719
695
|
<ul class="unstyled" role="menu">
|
720
696
|
<li><span>Everyone loves a great film so treat your family, friends, staff or clients to the gift of cinema.<br />
|
721
697
|
You can buy ODEON Gift Cards in a design to suite every taste.</span></li>
|
@@ -740,6 +716,11 @@
|
|
740
716
|
</script>
|
741
717
|
</header>
|
742
718
|
|
719
|
+
<div id="ad_skyscraper2" class="drev-skyscraper-banner-two -ce-capture">
|
720
|
+
<script type='text/javascript'><!--// <![CDATA[
|
721
|
+
OA_show(21);
|
722
|
+
// ]]> --></script><noscript><a target='_blank' href='http://ads.odeon.co.uk/www/delivery/ck.php?n=a3b7b2a4'><img border='0' alt='' src='http://ads.odeon.co.uk/www/delivery/avw.php?zoneid=21&n=a3b7b2a4' /></a></noscript> </div>
|
723
|
+
|
743
724
|
|
744
725
|
<!-- Start Hero Carousel -->
|
745
726
|
|
@@ -750,15 +731,16 @@
|
|
750
731
|
</div>
|
751
732
|
<div class="cinemahome-stacked">
|
752
733
|
<div>
|
753
|
-
<img src="http://m2.odeon.co.uk/_uploads/banner/
|
734
|
+
<img src="http://m2.odeon.co.uk/_uploads/banner/050c48609ef620da2353aae0c4f5c664.jpg" alt=""/>
|
735
|
+
<div class="info"><span><a href="http://www.odeon.co.uk/offers/2for1-wednesdays/?utm_source=cinemahero&utm_medium=cinemahero&utm_content=241&utm_campaign=241">Find out more</a></span></div>
|
754
736
|
</div>
|
755
737
|
<div>
|
756
|
-
<img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/banner/
|
757
|
-
<div class="info offer"><span><a href="
|
738
|
+
<img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/banner/57ddc990a91cb57e17f078c3d3cf1f48.jpg" alt=""/>
|
739
|
+
<div class="info offer"><span><a href="/back-british-film/">ODEON is proud to support British Cinema</a></span></div>
|
758
740
|
</div>
|
759
741
|
</div>
|
760
742
|
<div class="cinemahome-half">
|
761
|
-
<img src="http://odeon
|
743
|
+
<img src="http://m.odeon.co.uk/_uploads/cinema_management/20a49df09f6646eeeec7a7b34c0f9e41.jpg" alt=""/>
|
762
744
|
</div>
|
763
745
|
</article>
|
764
746
|
</div>
|
@@ -830,80 +812,51 @@
|
|
830
812
|
<div class="tab-pane dayview active loaded" id="ind-day" role="tabpanel">
|
831
813
|
<ul class="nav nav-tabs arrow" role="tablist">
|
832
814
|
<li class="tab-icon-arrow active" role="tab">
|
833
|
-
<a href="#DAY1" onclick="getShowtimes('DAY1', '
|
834
|
-
<strong>Today</strong><br />
|
815
|
+
<a href="#DAY1" onclick="getShowtimes('DAY1', '2015-03-14', '105', 'DAY', 1)" data-toggle="tab">
|
816
|
+
<strong>Today</strong><br />14 Mar </a>
|
835
817
|
</li>
|
836
818
|
<li class="tab-icon-arrow " role="tab">
|
837
|
-
<a href="#DAY2" onclick="getShowtimes('DAY2', '
|
838
|
-
<strong>
|
819
|
+
<a href="#DAY2" onclick="getShowtimes('DAY2', '2015-03-15', '105', 'DAY', 1)" data-toggle="tab">
|
820
|
+
<strong>Sun</strong><br />15 Mar </a>
|
839
821
|
</li>
|
840
822
|
<li class="tab-icon-arrow " role="tab">
|
841
|
-
<a href="#DAY3" onclick="getShowtimes('DAY3', '
|
842
|
-
<strong>
|
823
|
+
<a href="#DAY3" onclick="getShowtimes('DAY3', '2015-03-16', '105', 'DAY', 1)" data-toggle="tab">
|
824
|
+
<strong>Mon</strong><br />16 Mar </a>
|
843
825
|
</li>
|
844
826
|
<li class="tab-icon-arrow " role="tab">
|
845
|
-
<a href="#DAY4" onclick="getShowtimes('DAY4', '
|
846
|
-
<strong>
|
827
|
+
<a href="#DAY4" onclick="getShowtimes('DAY4', '2015-03-17', '105', 'DAY', 1)" data-toggle="tab">
|
828
|
+
<strong>Tue</strong><br />17 Mar </a>
|
847
829
|
</li>
|
848
830
|
<li class="tab-icon-arrow " role="tab">
|
849
|
-
<a href="#DAY5" onclick="getShowtimes('DAY5', '
|
850
|
-
<strong>
|
831
|
+
<a href="#DAY5" onclick="getShowtimes('DAY5', '2015-03-18', '105', 'DAY', 1)" data-toggle="tab">
|
832
|
+
<strong>Wed</strong><br />18 Mar </a>
|
851
833
|
</li>
|
852
834
|
<li class="tab-icon-arrow " role="tab">
|
853
|
-
<a href="#DAY6" onclick="getShowtimes('DAY6', '
|
854
|
-
<strong>
|
835
|
+
<a href="#DAY6" onclick="getShowtimes('DAY6', '2015-03-19', '105', 'DAY', 1)" data-toggle="tab">
|
836
|
+
<strong>Thu</strong><br />19 Mar </a>
|
855
837
|
</li>
|
856
838
|
<li class="tab-icon-arrow " role="tab">
|
857
|
-
<a href="#DAY7" onclick="getShowtimes('DAY7', '
|
858
|
-
<strong>
|
839
|
+
<a href="#DAY7" onclick="getShowtimes('DAY7', '2015-03-20', '105', 'DAY', 1)" data-toggle="tab">
|
840
|
+
<strong>Fri</strong><br />20 Mar </a>
|
859
841
|
</li>
|
860
842
|
<li class="tab-icon-arrow " role="tab">
|
861
|
-
<a href="#DAY8" onclick="getShowtimes('DAY8', '
|
862
|
-
<strong>
|
843
|
+
<a href="#DAY8" onclick="getShowtimes('DAY8', '2015-03-21', '105', 'DAY', 1)" data-toggle="tab">
|
844
|
+
<strong>Sat</strong><br />21 Mar </a>
|
863
845
|
</li>
|
864
846
|
<li class="tab-icon-arrow " role="tab">
|
865
|
-
<a href="#DAY9" onclick="getShowtimes('DAY9', '
|
866
|
-
<strong>
|
847
|
+
<a href="#DAY9" onclick="getShowtimes('DAY9', '2015-03-22', '105', 'DAY', 1)" data-toggle="tab">
|
848
|
+
<strong>Sun</strong><br />22 Mar </a>
|
867
849
|
</li>
|
868
850
|
<li class="tab-icon-arrow " role="tab">
|
869
|
-
<a href="#DAY10" onclick="getShowtimes('DAY10', '
|
870
|
-
<strong>
|
851
|
+
<a href="#DAY10" onclick="getShowtimes('DAY10', '2015-03-23', '105', 'DAY', 1)" data-toggle="tab">
|
852
|
+
<strong>Mon</strong><br />23 Mar </a>
|
871
853
|
</li>
|
872
854
|
</ul>
|
873
855
|
<div class="tab-content">
|
874
856
|
<div class="tab-pane active loaded" id="DAY1" role="tabpanel">
|
875
857
|
<div class="span9">
|
876
858
|
|
877
|
-
|
878
|
-
<h4>New releases</h4>
|
879
|
-
<div id="films-this-week" class="carousel slide">
|
880
|
-
<div class="carousel-inner">
|
881
|
-
<div class="jcarousel-list cycle-slideshow-1411074565246">
|
882
|
-
<div class="pull-left jcarousel-item"><img src="http://m.odeon.co.uk/_uploads/asset_management/70x108_0a22428b021181383d81e14fa5142018.jpg" /><h3><a href="/films/daawat_e_ishq/15461/">Daawat-e-ishq</a></h3><a href="/film-classifications/" alt="PG" title="More about film classifications"><div class="cert-icon-uk-PG-small"></div></a> <div data-rating-master-id='15461' data-return-to='/cinemas/odeon/105/' class="buzz-rating-container buzz-rating rating-icon-buzz-dark-small-inactive">
|
883
|
-
<div class="rating-icon-buzz-small-active s4" data-rating="4">
|
884
|
-
<div class="rate-over s1"></div>
|
885
|
-
<div class="rate-over s2"></div>
|
886
|
-
<div class="rate-over s3"></div>
|
887
|
-
<div class="rate-over s4"></div>
|
888
|
-
<div class="rate-over s5"></div>
|
889
|
-
</div>
|
890
|
-
<i class="rating-icon-buzz-small-icon"></i>
|
891
|
-
</div> <span>Releasing 19/09/2014</span>
|
892
|
-
</div>
|
893
|
-
</div>
|
894
|
-
</div>
|
895
|
-
<!-- Carousel nav -->
|
896
|
-
</div>
|
897
|
-
</section>
|
898
|
-
<script type="text/javascript">
|
899
|
-
<!--//
|
900
|
-
$(document).ready(function() {
|
901
|
-
|
902
|
-
initRating();
|
903
|
-
});
|
904
|
-
//-->
|
905
|
-
</script>
|
906
|
-
|
859
|
+
|
907
860
|
<section id="film-list-DAY1">
|
908
861
|
<form class="film-order">
|
909
862
|
<label for="sort-films">Sort by:</label>
|
@@ -921,20 +874,138 @@
|
|
921
874
|
<div class="content-container text">
|
922
875
|
<span>
|
923
876
|
|
924
|
-
Showtimes for Today until <b>Thursday
|
877
|
+
Showtimes for Today until <b>Thursday 19th March</b> are available. Further showtimes will be confirmed and added in the afternoon on <b>Tuesday 17th March</b>. To view showtimes for another date, select from the days above.
|
925
878
|
</span>
|
926
879
|
</div>
|
927
880
|
|
928
881
|
<script type="text/javascript">
|
929
882
|
var showtimesFilmListDAY1 = [];
|
883
|
+
showtimesFilmListDAY1['24338'] = ['Fifty Shades Of Grey', '2015/02/13', '3.62109375'];
|
884
|
+
showtimesFilmListDAY1['26574'] = ['The Second Best Exotic Marigold Hotel', '2015/02/26', '3.8596491228070176'];
|
930
885
|
|
931
886
|
</script>
|
932
887
|
|
933
|
-
|
934
|
-
|
935
|
-
|
888
|
+
<div class="content-container grey">
|
889
|
+
<h5 class="grey">Click on a film time to view more information</h5>
|
890
|
+
</div>
|
936
891
|
<section id="ind-film-list-DAY1">
|
937
|
-
|
892
|
+
|
893
|
+
<div id="24338" class="film-detail DAY1">
|
894
|
+
|
895
|
+
<div class="content-container film _DAY1" id="film-24338">
|
896
|
+
<div class="grad-hor">
|
897
|
+
<a href="/films/fifty_shades_of_grey/14725/"><img src="http://m2.odeon.co.uk/_uploads/asset_management/70x108_c5a351f869478318e05f58becf5e9c15.jpg" /></a>
|
898
|
+
<div class="presentation-info">
|
899
|
+
<h4><a href="/films/fifty_shades_of_grey/14725/">Fifty Shades Of Grey</a></h4>
|
900
|
+
<a href="/film-classifications/" alt="18" title="More about film classifications"><div class="cert-icon-uk-18-small"></div></a> <span class="description">
|
901
|
+
ID may be required </span>
|
902
|
+
</div>
|
903
|
+
<p><strong>Steamy adaptation of the book which became a global phenomenon. </strong></p>
|
904
|
+
|
905
|
+
<div class="presentation-info">
|
906
|
+
<div data-rating-master-id='14725' data-return-to='/cinemas/odeon/105/' class="star-rating-container star-rating rating-icon-star-light-small-inactive">
|
907
|
+
<div class="rating-icon-star-small-active s7" data-rating="7">
|
908
|
+
<div class="rate-over s1"></div>
|
909
|
+
<div class="rate-over s2"></div>
|
910
|
+
<div class="rate-over s3"></div>
|
911
|
+
<div class="rate-over s4"></div>
|
912
|
+
<div class="rate-over s5"></div>
|
913
|
+
</div>
|
914
|
+
</div>
|
915
|
+
<span class="description"><strong>Film length: 125 mins</strong></span>
|
916
|
+
</div>
|
917
|
+
<p class="description">Strong sex.</p>
|
918
|
+
</div>
|
919
|
+
<div class="info-corner">
|
920
|
+
<div class="img-bundle">
|
921
|
+
<div class="film-icon-DAY1 feature-icon-light-2d-medium DAY1_2D" data-schedule="2D" data-film="24338"></div> </div>
|
922
|
+
<div class="btn-group">
|
923
|
+
<a href="http://odeon.trailer.cineweb.de/50shades_new.mp4" class="btn btn-primary trailer kkvideo-trigger" data-return-to='/cinemas/odeon/105/' data-film-id="14725" data-showbooknowbutton="false" data-filmpage="false"><i class="film-icon-btn-play"></i>Trailer</a>
|
924
|
+
<button class="btn btn-primary trailer dropdown-toggle" data-toggle="dropdown">
|
925
|
+
<span class="caret"></span>
|
926
|
+
</button>
|
927
|
+
<ul class="dropdown-menu">
|
928
|
+
<li><a href="#">Add to Playlist</a></li>
|
929
|
+
</ul>
|
930
|
+
</div> </div>
|
931
|
+
</div><div class="content-container times-all _DAY1" id="performances-DAY1-24338">
|
932
|
+
|
933
|
+
|
934
|
+
|
935
|
+
|
936
|
+
|
937
|
+
<div class="content-container times containerDAY1">
|
938
|
+
<div class="presentation-info">
|
939
|
+
<strong>2D</strong>
|
940
|
+
<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>
|
941
|
+
</div>
|
942
|
+
<ul class="unstyled inline">
|
943
|
+
<li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_AFTERNOON DAY1_AUDIODESCRIBED DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/OUQxQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 12:45" data-popup="popup" data-duration="125" data-start="12:45" data-end="14:50" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 3 (Wheelchair Accessible)" data-is-online="1">12:45</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_AFTERNOON DAY1_AUDIODESCRIBED DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/MUExQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 13:15" data-popup="popup" data-duration="125" data-start="13:15" data-end="15:20" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 1 (Wheelchair Accessible)" data-is-online="1">13:15</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_AFTERNOON DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/QTAyQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 13:45" data-popup="popup" data-duration="125" data-start="13:45" data-end="15:50" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 5 (Wheelchair Accessible)" data-is-online="1">13:45</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_AFTERNOON DAY1_AUDIODESCRIBED DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/NEYxQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 14:15" data-popup="popup" data-duration="125" data-start="14:15" data-end="16:20" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 4 (Wheelchair Accessible)" data-is-online="1">14:15</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_AFTERNOON DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/M0MxQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 15:00" data-popup="popup" data-duration="125" data-start="15:00" data-end="17:05" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 2 (Wheelchair Accessible)" data-is-online="1">15:00</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_AFTERNOON DAY1_AUDIODESCRIBED DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/RkQxQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 15:30" data-popup="popup" data-duration="125" data-start="15:30" data-end="17:35" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 3 (Wheelchair Accessible)" data-is-online="1">15:30</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_AFTERNOON DAY1_AUDIODESCRIBED DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/N0ExQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 16:00" data-popup="popup" data-duration="125" data-start="16:00" data-end="18:05" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 1 (Wheelchair Accessible)" data-is-online="1">16:00</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_AFTERNOON DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/MDEyQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 16:30" data-popup="popup" data-duration="125" data-start="16:30" data-end="18:35" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 5 (Wheelchair Accessible)" data-is-online="1">16:30</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_EVENING DAY1_AUDIODESCRIBED DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/QUYxQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 17:00" data-popup="popup" data-duration="125" data-start="17:00" data-end="19:05" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 4 (Wheelchair Accessible)" data-is-online="1">17:00</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_EVENING DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/OUMxQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 17:45" data-popup="popup" data-duration="125" data-start="17:45" data-end="19:50" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 2 (Wheelchair Accessible)" data-is-online="1">17:45</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_EVENING DAY1_AUDIODESCRIBED DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/NUUxQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 18:15" data-popup="popup" data-duration="125" data-start="18:15" data-end="20:20" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 3 (Wheelchair Accessible)" data-is-online="1">18:15</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_EVENING DAY1_AUDIODESCRIBED DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/REExQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 19:00" data-popup="popup" data-duration="125" data-start="19:00" data-end="21:05" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 1 (Wheelchair Accessible)" data-is-online="1">19:00</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_EVENING DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/NjEyQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 19:30" data-popup="popup" data-duration="125" data-start="19:30" data-end="21:35" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 5 (Wheelchair Accessible)" data-is-online="1">19:30</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_EVENING DAY1_AUDIODESCRIBED DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/MDAyQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 20:00" data-popup="popup" data-duration="125" data-start="20:00" data-end="22:05" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 4 (Wheelchair Accessible)" data-is-online="1">20:00</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_EVENING DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/RkMxQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 20:45" data-popup="popup" data-duration="125" data-start="20:45" data-end="22:50" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 2 (Wheelchair Accessible)" data-is-online="1">20:45</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_EVENING DAY1_AUDIODESCRIBED DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/QkUxQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 21:15" data-popup="popup" data-duration="125" data-start="21:15" data-end="23:20" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 3 (Wheelchair Accessible)" data-is-online="1">21:15</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_EVENING DAY1_AUDIODESCRIBED DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/M0IxQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 22:00" data-popup="popup" data-duration="125" data-start="22:00" data-end="00:05" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 1 (Wheelchair Accessible)" data-is-online="1">22:00</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_18 DAY1_EVENING DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/QzEyQzAwMDAwMjNUWVFGWkdCIzEwNSMxNDcyNQ==/" class="performance-detail" title="Peak - book Fifty Shades Of Grey on 14/03/2015 22:30" data-popup="popup" data-duration="125" data-start="22:30" data-end="00:35" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 5 (Wheelchair Accessible)" data-is-online="1">22:30</a><i class="DAY1 small ">Studios</i></li> </ul>
|
944
|
+
<div class="content-container times stopper"></div>
|
945
|
+
</div>
|
946
|
+
|
947
|
+
|
948
|
+
<!-- <div class="content-container times stopper"></div>-->
|
949
|
+
</div> </div>
|
950
|
+
|
951
|
+
<div id="26574" class="film-detail DAY1">
|
952
|
+
|
953
|
+
<div class="content-container film _DAY1" id="film-26574">
|
954
|
+
<div class="grad-hor">
|
955
|
+
<a href="/films/the_second_best_exotic_marigold_hotel/15177/"><img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/asset_management/70x108_538c352747af97a0c8c89063b0123444.jpg" /></a>
|
956
|
+
<div class="presentation-info">
|
957
|
+
<h4><a href="/films/the_second_best_exotic_marigold_hotel/15177/">The Second Best Exotic Marigold Hotel</a></h4>
|
958
|
+
<a href="/film-classifications/" alt="PG" title="More about film classifications"><div class="cert-icon-uk-PG-small"></div></a> <span class="description">
|
959
|
+
</span>
|
960
|
+
</div>
|
961
|
+
<p><strong>Sequel to 2012's hit comedy starring Dame Judi Dench.</strong></p>
|
962
|
+
|
963
|
+
<div class="presentation-info">
|
964
|
+
<div data-rating-master-id='15177' data-return-to='/cinemas/odeon/105/' class="star-rating-container star-rating rating-icon-star-light-small-inactive">
|
965
|
+
<div class="rating-icon-star-small-active s8" data-rating="8">
|
966
|
+
<div class="rate-over s1"></div>
|
967
|
+
<div class="rate-over s2"></div>
|
968
|
+
<div class="rate-over s3"></div>
|
969
|
+
<div class="rate-over s4"></div>
|
970
|
+
<div class="rate-over s5"></div>
|
971
|
+
</div>
|
972
|
+
</div>
|
973
|
+
<span class="description"><strong>Film length: 122 mins</strong></span>
|
974
|
+
</div>
|
975
|
+
<p class="description">Mild bad language, sex references.</p>
|
976
|
+
</div>
|
977
|
+
<div class="info-corner">
|
978
|
+
<div class="img-bundle">
|
979
|
+
<div class="film-icon-DAY1 feature-icon-light-backbritishfilm-medium DAY1_BACKBRITISHFILM" data-schedule="BACKBRITISHFILM" data-film="26574"></div><div class="film-icon-DAY1 feature-icon-light-2d-medium DAY1_2D" data-schedule="2D" data-film="26574"></div> </div>
|
980
|
+
<div class="btn-group">
|
981
|
+
<a href="http://odeon.trailer.cineweb.de/t2ndbemh.mp4" class="btn btn-primary trailer kkvideo-trigger" data-return-to='/cinemas/odeon/105/' data-film-id="15177" data-showbooknowbutton="false" data-filmpage="false"><i class="film-icon-btn-play"></i>Trailer</a>
|
982
|
+
<button class="btn btn-primary trailer dropdown-toggle" data-toggle="dropdown">
|
983
|
+
<span class="caret"></span>
|
984
|
+
</button>
|
985
|
+
<ul class="dropdown-menu">
|
986
|
+
<li><a href="#">Add to Playlist</a></li>
|
987
|
+
</ul>
|
988
|
+
</div> </div>
|
989
|
+
</div><div class="content-container times-all _DAY1" id="performances-DAY1-26574">
|
990
|
+
|
991
|
+
|
992
|
+
|
993
|
+
|
994
|
+
|
995
|
+
<div class="content-container times containerDAY1">
|
996
|
+
<div class="presentation-info">
|
997
|
+
<strong>2D</strong>
|
998
|
+
<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>
|
999
|
+
</div>
|
1000
|
+
<ul class="unstyled inline">
|
1001
|
+
<li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_PG DAY1_AFTERNOON DAY1_BACKBRITISHFILM DAY1_2D DAY1_OLS-STUDIO DAY1_GENRE_5 DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/REIxQzAwMDAwMjNUWVFGWkdCIzEwNSMxNTE3Nw==/" class="performance-detail" title="Peak - book The Second Best Exotic Marigold Hotel on 14/03/2015 12:15" data-popup="popup" data-duration="122" data-start="12:15" data-end="14:17" data-status="normal" data-type="DAY1" data-auditorium-info="Studio 2 (Wheelchair Accessible)" data-is-online="1">12:15</a><i class="DAY1 small ">Studios</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_PG DAY1_AFTERNOON DAY1_BACKBRITISHFILM DAY1_AUDIODESCRIBED DAY1_2D DAY1_OLS-PREMIERE-SCREEN DAY1_GENRE_5 DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/RTgxQzAwMDAwMjNUWVFGWkdCIzEwNSMxNTE3Nw==/" class="performance-detail" title="Peak - book The Second Best Exotic Marigold Hotel on 14/03/2015 14:15" data-popup="popup" data-duration="122" data-start="14:15" data-end="16:17" data-status="normal" data-type="DAY1" data-auditorium-info="Leicester Square (Wheelchair Accessible)" data-is-online="1">14:15</a><i class="DAY1 small ">Premiere Screen</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_PG DAY1_EVENING DAY1_BACKBRITISHFILM DAY1_AUDIODESCRIBED DAY1_2D DAY1_OLS-PREMIERE-SCREEN DAY1_GENRE_5 DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/RjgxQzAwMDAwMjNUWVFGWkdCIzEwNSMxNTE3Nw==/" class="performance-detail" title="Peak - book The Second Best Exotic Marigold Hotel on 14/03/2015 17:15" data-popup="popup" data-duration="122" data-start="17:15" data-end="19:17" data-status="normal" data-type="DAY1" data-auditorium-info="Leicester Square (Wheelchair Accessible)" data-is-online="1">17:15</a><i class="DAY1 small ">Premiere Screen</i></li><li class="DAY1 DAY1_WHEELCHAIR performance-blue DAY1_ISPEAK DAY1_PG DAY1_EVENING DAY1_BACKBRITISHFILM DAY1_AUDIODESCRIBED DAY1_2D DAY1_OLS-PREMIERE-SCREEN DAY1_GENRE_5 DAY1_GENRE_7 show"><a href="https://www.odeon.co.uk/booking/init/MDkxQzAwMDAwMjNUWVFGWkdCIzEwNSMxNTE3Nw==/" class="performance-detail" title="Peak - book The Second Best Exotic Marigold Hotel on 14/03/2015 20:15" data-popup="popup" data-duration="122" data-start="20:15" data-end="22:17" data-status="normal" data-type="DAY1" data-auditorium-info="Leicester Square (Wheelchair Accessible)" data-is-online="1">20:15</a><i class="DAY1 small ">Premiere Screen</i></li> </ul>
|
1002
|
+
<div class="content-container times stopper"></div>
|
1003
|
+
</div>
|
1004
|
+
|
1005
|
+
|
1006
|
+
<!-- <div class="content-container times stopper"></div>-->
|
1007
|
+
</div> </div>
|
1008
|
+
</section>
|
938
1009
|
<!--</div>-->
|
939
1010
|
</div>
|
940
1011
|
<div class="span3">
|
@@ -949,6 +1020,8 @@
|
|
949
1020
|
<div class="selectpicker select-icon-select">
|
950
1021
|
<select id="filter-film-DAY1" data-size="10">
|
951
1022
|
<option value="null">Select a film</option>
|
1023
|
+
<option value="24338">Fifty Shades Of Grey</option>
|
1024
|
+
<option value="26574">The Second Best Exotic Marigold Hotel</option>
|
952
1025
|
</select>
|
953
1026
|
</div>
|
954
1027
|
</div>
|
@@ -1210,7 +1283,7 @@
|
|
1210
1283
|
<label for="ind-newbies-DAY1" class="checkbox"><i class="checkbox-icon-unchecked"></i> Newbies</label>
|
1211
1284
|
|
1212
1285
|
<input type="checkbox" class="filter-DAY1" name="DAY1-special_screenings" id="ind-senior-screen-DAY1" value="seniorScreen">
|
1213
|
-
<label for="ind-senior-screen-DAY1" class="checkbox"><i class="checkbox-icon-unchecked"></i>
|
1286
|
+
<label for="ind-senior-screen-DAY1" class="checkbox"><i class="checkbox-icon-unchecked"></i> Silver Cinema</label>
|
1214
1287
|
|
1215
1288
|
<input type="checkbox" class="filter-DAY1" name="DAY1-special_screenings" id="ind-bollywood-DAY1-2" value="bollywood">
|
1216
1289
|
<label for="ind-bollywood-DAY1-2" class="checkbox"><i class="checkbox-icon-unchecked"></i> Bollywood</label>
|
@@ -1498,14 +1571,10 @@
|
|
1498
1571
|
<div class="functions"><div class="feature-icon-dark-costa-medium"></div><div class="feature-icon-dark-3d-medium"></div></div>
|
1499
1572
|
<p>The ODEON Leicester Square & Studios are located on the East Side of Leicester Square. Please note that Leicester Square is pedestrianised.</p>
|
1500
1573
|
<div class="hrComponent comp"><hr></div>
|
1501
|
-
<p>Filmline</p>
|
1502
|
-
<p class="teaser"><strong>0871 22 44 007</strong></p>
|
1503
|
-
<p class="description"><i>Calls cost 10p per minute plus network extras.</i></p>
|
1504
|
-
<div class="hrComponent comp"><hr></div>
|
1505
1574
|
<p><strong>ODEON Cinemas nearby:</strong></p>
|
1506
|
-
<a href="/cinemas/
|
1507
|
-
<a href="/cinemas/panton_st/117/" class="otherLocalCinemas" data-siteid="117">Panton St</a> <span>(0.1 miles)</span><br>
|
1575
|
+
<a href="/cinemas/panton_st/117/" class="otherLocalCinemas" data-siteid="117">Panton St</a> <span>(0.1 miles)</span><br>
|
1508
1576
|
<a href="/cinemas/covent_garden/81/" class="otherLocalCinemas" data-siteid="81">Covent Garden</a> <span>(0.27 miles)</span><br>
|
1577
|
+
<a href="/cinemas/tottenham_court_rd/135/" class="otherLocalCinemas" data-siteid="135">Tottenham Court Rd</a> <span>(0.55 miles)</span><br>
|
1509
1578
|
</div>
|
1510
1579
|
<div class="span8 table-cell">
|
1511
1580
|
<div class="switch">
|
@@ -1513,7 +1582,7 @@
|
|
1513
1582
|
</div>
|
1514
1583
|
<a class="underline" href="https://maps.google.com/maps?daddr=51.5105,-0.1295" target="_blank">Get directions</a>
|
1515
1584
|
<div class="location-map" id="location-map" style=""></div>
|
1516
|
-
<div id="cinemasData" style="display: none;" data-cinemasmap='[{"siteId":105,"name":"London - Leicester Square","address":{"lineOne":"24-26 Leicester Square","lineTwo":"London","lineThree":"","lineFour":"","postcode":"WC2H 7LQ"},"longitude":-0.1295,"latitude":51.5105,"isImax":0,"image":null,"siteLink":"\/cinemas\/london_leicester_square\/105\/"},{"siteId":
|
1585
|
+
<div id="cinemasData" style="display: none;" data-cinemasmap='[{"siteId":105,"name":"London - Leicester Square","address":{"lineOne":"24-26 Leicester Square","lineTwo":"London","lineThree":"","lineFour":"","postcode":"WC2H 7LQ"},"longitude":-0.1295,"latitude":51.5105,"isImax":0,"image":null,"siteLink":"\/cinemas\/london_leicester_square\/105\/"},{"siteId":117,"name":"Panton St","address":{"lineOne":"11-18 Panton Street","lineTwo":"London","lineThree":"","lineFour":"","postcode":"SW1Y 4DP"},"longitude":-0.13124,"latitude":51.5095,"isImax":0,"image":"http:\/\/odeon-fastly.krankikom.de.global.prod.fastly.net\/_uploads\/cinema_management\/99a38d34709f11332eebe0c2ed30a36b.JPG","siteLink":"\/cinemas\/panton_st\/117\/"},{"siteId":81,"name":"Covent Garden","address":{"lineOne":"135 Shaftesbury Avenue","lineTwo":"London","lineThree":"","lineFour":"","postcode":"WC2H 8AH"},"longitude":-0.12824,"latitude":51.5143,"isImax":0,"image":"http:\/\/odeon-fastly.krankikom.de.global.prod.fastly.net\/_uploads\/cinema_management\/a9f2478cbdd0211d8a719cf0b4192a64.jpg","siteLink":"\/cinemas\/covent_garden\/81\/"},{"siteId":135,"name":"Tottenham Court Rd","address":{"lineOne":"30 Tottenham Court Road","lineTwo":"London","lineThree":"","lineFour":"","postcode":"W1T 1BX"},"longitude":-0.13243,"latitude":51.5182,"isImax":0,"image":"http:\/\/odeon-fastly.krankikom.de.global.prod.fastly.net\/_uploads\/cinema_management\/6ef1ec788abf54ac317b39e1537bf273.jpg","siteLink":"\/cinemas\/tottenham_court_rd\/135\/"}]'></div>
|
1517
1586
|
|
1518
1587
|
<style>
|
1519
1588
|
#location-map {
|
@@ -1528,7 +1597,10 @@
|
|
1528
1597
|
</style> <div class="location-directions" id="location-directions">
|
1529
1598
|
<p>
|
1530
1599
|
<h4>Driving Directions</h4>
|
1531
|
-
Charing Cross Road runs past the back of the Cinema which fronts on to the East Side of Leicester Square. From noon each day Leicester Sq becomes closed to all vehicle traffic. The nearest car parks are located in Whitcomb Street on the south side of the Square or in China Town
|
1600
|
+
Charing Cross Road runs past the back of the Cinema which fronts on to the East Side of Leicester Square. From noon each day Leicester Sq becomes closed to all vehicle traffic. The nearest car parks are located in Whitcomb Street on the south side of the Square or in China Town.<br />
|
1601
|
+
<br />
|
1602
|
+
<b>Parking</b><br /><br />
|
1603
|
+
<a href="http://www.parkjockey.com/odeon-leicester-square?utm_source=odeon&utm_medium=location_page&utm_campaign=odeon" target="_blank">The cinema has no parking, to find or pre book your nearest car parking space for ODEON Leicester Square please click here</a>. </p>
|
1532
1604
|
<p>
|
1533
1605
|
<h4>Public Transport</h4>
|
1534
1606
|
The nearest Tube Stations are Leicester Square on the Piccadilly & Northern Lines and Piccadilly Circus on the Piccadilly and Bakerloo lines. Both are situated only 2 minutes walk from the cinema.The nearest mainline station is Charing Cross railway station about 5 minutes walk from the cinema. </p>
|
@@ -1569,12 +1641,12 @@
|
|
1569
1641
|
|
1570
1642
|
|
1571
1643
|
<!-- Super Saver -->
|
1572
|
-
<div class="span3 attr super-saver"><span>£
|
1573
|
-
<div class="span3 attr super-saver"><span>£
|
1644
|
+
<div class="span3 attr super-saver"><span>£6.00</span></div>
|
1645
|
+
<div class="span3 attr super-saver"><span>£6.50</span></div>
|
1574
1646
|
|
1575
1647
|
<!-- Peak -->
|
1576
|
-
<div class="span3 attr peak-times"><span>£
|
1577
|
-
<div class="span3 attr peak-times"><span>£
|
1648
|
+
<div class="span3 attr peak-times"><span>£6.00</span></div>
|
1649
|
+
<div class="span3 attr peak-times"><span>£6.50</span></div>
|
1578
1650
|
</div>
|
1579
1651
|
|
1580
1652
|
|
@@ -1583,12 +1655,12 @@
|
|
1583
1655
|
|
1584
1656
|
|
1585
1657
|
<!-- Super Saver -->
|
1586
|
-
<div class="span3 attr super-saver"><span>£
|
1587
|
-
<div class="span3 attr super-saver"><span>£
|
1658
|
+
<div class="span3 attr super-saver"><span>£7.00</span></div>
|
1659
|
+
<div class="span3 attr super-saver"><span>£7.50</span></div>
|
1588
1660
|
|
1589
1661
|
<!-- Peak -->
|
1590
|
-
<div class="span3 attr peak-times"><span>£
|
1591
|
-
<div class="span3 attr peak-times"><span>£
|
1662
|
+
<div class="span3 attr peak-times"><span>£8.95</span></div>
|
1663
|
+
<div class="span3 attr peak-times"><span>£9.45</span></div>
|
1592
1664
|
</div>
|
1593
1665
|
|
1594
1666
|
|
@@ -1597,12 +1669,12 @@
|
|
1597
1669
|
|
1598
1670
|
|
1599
1671
|
<!-- Super Saver -->
|
1600
|
-
<div class="span3 attr super-saver"><span>£
|
1601
|
-
<div class="span3 attr super-saver"><span>£
|
1672
|
+
<div class="span3 attr super-saver"><span>£7.00</span></div>
|
1673
|
+
<div class="span3 attr super-saver"><span>£7.50</span></div>
|
1602
1674
|
|
1603
1675
|
<!-- Peak -->
|
1604
|
-
<div class="span3 attr peak-times"><span>£
|
1605
|
-
<div class="span3 attr peak-times"><span>£
|
1676
|
+
<div class="span3 attr peak-times"><span>£8.95</span></div>
|
1677
|
+
<div class="span3 attr peak-times"><span>£9.45</span></div>
|
1606
1678
|
</div>
|
1607
1679
|
|
1608
1680
|
|
@@ -1611,12 +1683,12 @@
|
|
1611
1683
|
|
1612
1684
|
|
1613
1685
|
<!-- Super Saver -->
|
1614
|
-
<div class="span3 attr super-saver"><span>£
|
1615
|
-
<div class="span3 attr super-saver"><span>£
|
1686
|
+
<div class="span3 attr super-saver"><span>£7.00</span></div>
|
1687
|
+
<div class="span3 attr super-saver"><span>£7.50</span></div>
|
1616
1688
|
|
1617
1689
|
<!-- Peak -->
|
1618
|
-
<div class="span3 attr peak-times"><span>£
|
1619
|
-
<div class="span3 attr peak-times"><span>£
|
1690
|
+
<div class="span3 attr peak-times"><span>£8.95</span></div>
|
1691
|
+
<div class="span3 attr peak-times"><span>£9.45</span></div>
|
1620
1692
|
</div>
|
1621
1693
|
|
1622
1694
|
|
@@ -1625,12 +1697,12 @@
|
|
1625
1697
|
|
1626
1698
|
|
1627
1699
|
<!-- Super Saver -->
|
1628
|
-
<div class="span3 attr super-saver"><span>£
|
1629
|
-
<div class="span3 attr super-saver"><span>£
|
1700
|
+
<div class="span3 attr super-saver"><span>£8.00</span></div>
|
1701
|
+
<div class="span3 attr super-saver"><span>£8.50</span></div>
|
1630
1702
|
|
1631
1703
|
<!-- Peak -->
|
1632
|
-
<div class="span3 attr peak-times"><span>£
|
1633
|
-
<div class="span3 attr peak-times"><span>£
|
1704
|
+
<div class="span3 attr peak-times"><span>£12.00</span></div>
|
1705
|
+
<div class="span3 attr peak-times"><span>£12.50</span></div>
|
1634
1706
|
</div>
|
1635
1707
|
|
1636
1708
|
|
@@ -1639,12 +1711,12 @@
|
|
1639
1711
|
|
1640
1712
|
|
1641
1713
|
<!-- Super Saver -->
|
1642
|
-
<div class="span3 attr super-saver"><span>£
|
1643
|
-
<div class="span3 attr super-saver"><span>£
|
1714
|
+
<div class="span3 attr super-saver"><span>£20.00</span></div>
|
1715
|
+
<div class="span3 attr super-saver"><span>£20.50</span></div>
|
1644
1716
|
|
1645
1717
|
<!-- Peak -->
|
1646
|
-
<div class="span3 attr peak-times"><span>£
|
1647
|
-
<div class="span3 attr peak-times"><span>£
|
1718
|
+
<div class="span3 attr peak-times"><span>£20.00</span></div>
|
1719
|
+
<div class="span3 attr peak-times"><span>£20.50</span></div>
|
1648
1720
|
</div>
|
1649
1721
|
|
1650
1722
|
|
@@ -1904,9 +1976,9 @@
|
|
1904
1976
|
|
1905
1977
|
|
1906
1978
|
<div class="content-container normal-blue">
|
1907
|
-
<span>Upgrades
|
1979
|
+
<span>Upgrades and Premiums</span>
|
1908
1980
|
</div>
|
1909
|
-
<div class="row"><div class="span2"><p><strong>3D Films</strong><?=</p></div><div class="span4"><p>+ £2.00 Adullt / + £6.40 Family / + £1.60 Others</p></div></div> <div class="hrComponent comp"><hr /></div>
|
1981
|
+
<div class="row"><div class="span2"><p><strong>3D Films</strong><?=</p></div><div class="span4"><p>+ £2.00 Adullt / + £6.40 Family / + £1.60 Others</p></div><div class="span2"><p><strong>Blockbuster Prices</strong><?=</p></div><div class="span4"><p>The Second Best Marigold Hotel/Fast&Furious 7/Avengers: Age of Ultron + £1.00 per ticket</p></div></div> <div class="hrComponent comp"><hr /></div>
|
1910
1982
|
|
1911
1983
|
</div>
|
1912
1984
|
<!-- End Cinema Ticket Pricing -->
|
@@ -1918,6 +1990,8 @@
|
|
1918
1990
|
</div>
|
1919
1991
|
</div>
|
1920
1992
|
|
1993
|
+
|
1994
|
+
|
1921
1995
|
<!-- Start Other local cinemas -->
|
1922
1996
|
<a data-scrollspyelementnav="Other Local Cinemas" class="scrollSpyElement" id="otherCinemas"></a>
|
1923
1997
|
<div class="container">
|
@@ -1930,42 +2004,42 @@
|
|
1930
2004
|
<div class="row">
|
1931
2005
|
<div class="span6">
|
1932
2006
|
<div class="teaserComponent comp">
|
1933
|
-
<h4>
|
2007
|
+
<h4>Panton St</h4>
|
1934
2008
|
<div class="row">
|
1935
2009
|
<div class="span3">
|
1936
|
-
<img src="http://
|
1937
|
-
<p class="info-line"><i class="film-icon-distance"></i><strong>0.
|
2010
|
+
<img src="http://m.odeon.co.uk/_uploads/cinema_management/99a38d34709f11332eebe0c2ed30a36b.JPG" />
|
2011
|
+
<p class="info-line"><i class="film-icon-distance"></i><strong>0.1 miles.</strong></p>
|
1938
2012
|
</div>
|
1939
2013
|
<div class="span3">
|
1940
|
-
<p>ODEON
|
2014
|
+
<p>ODEON Panton Street is situated in the city centre next to Leicester Square. The cinema has 4 screens, 1 ATM which is located outisde at the front of the entrance.</p>
|
1941
2015
|
<div class="functions">
|
1942
2016
|
<div class="feature-icon-imax-light-m"></div><div class="feature-icon-d-box-light-m"></div><div class="feature-icon-costa-light-m"></div>
|
1943
2017
|
</div>
|
1944
2018
|
</div>
|
1945
2019
|
</div>
|
1946
|
-
<a href="/cinemas/
|
2020
|
+
<a href="/cinemas/panton_st/117/"><i class="nav-icon-arrow-white"></i><strong>View cinema details</strong></a>
|
1947
2021
|
</div>
|
1948
2022
|
</div>
|
1949
2023
|
<div class="span3">
|
1950
2024
|
<div class="teaserComponent comp">
|
1951
|
-
<h4>
|
1952
|
-
<div style="height: 75px; overflow: hidden;"><img src="http://odeon
|
1953
|
-
<p class="info-line"><i class="film-icon-distance"></i><strong>0.
|
2025
|
+
<h4>Covent Garden</h4>
|
2026
|
+
<div style="height: 75px; overflow: hidden;"><img src="http://m2.odeon.co.uk/_uploads/cinema_management/a9f2478cbdd0211d8a719cf0b4192a64.jpg" style="width: 260px; margin-top: -25px;"></div>
|
2027
|
+
<p class="info-line"><i class="film-icon-distance"></i><strong>0.27 miles.</strong></p>
|
1954
2028
|
<div class="functions">
|
1955
2029
|
<div class="feature-icon-isense-light-m"></div><div class="feature-icon-costa-light-m"></div>
|
1956
2030
|
</div>
|
1957
|
-
<a href="/cinemas/
|
2031
|
+
<a href="/cinemas/covent_garden/81/"><i class="nav-icon-arrow-white"></i><strong>View cinema details</strong></a>
|
1958
2032
|
</div>
|
1959
2033
|
</div>
|
1960
2034
|
<div class="span3">
|
1961
2035
|
<div class="teaserComponent comp">
|
1962
|
-
<h4>
|
1963
|
-
<div style="height: 75px; overflow: hidden;"><img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/cinema_management/
|
1964
|
-
<p class="info-line"><i class="film-icon-distance"></i><strong>0.
|
2036
|
+
<h4>Tottenham Court Rd</h4>
|
2037
|
+
<div style="height: 75px; overflow: hidden;"><img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/cinema_management/6ef1ec788abf54ac317b39e1537bf273.jpg" style="width: 260px; margin-top: -25px;"></div>
|
2038
|
+
<p class="info-line"><i class="film-icon-distance"></i><strong>0.55 miles.</strong></p>
|
1965
2039
|
<div class="functions">
|
1966
2040
|
<div class="feature-icon-isense-light-m"></div><div class="feature-icon-costa-light-m"></div>
|
1967
2041
|
</div>
|
1968
|
-
<a href="/cinemas/
|
2042
|
+
<a href="/cinemas/tottenham_court_rd/135/"><i class="nav-icon-arrow-white"></i><strong>View cinema details</strong></a>
|
1969
2043
|
</div>
|
1970
2044
|
</div>
|
1971
2045
|
</div>
|
@@ -1988,29 +2062,30 @@
|
|
1988
2062
|
<div class="row">
|
1989
2063
|
<div class="span4">
|
1990
2064
|
<div class="teaserComponent comp">
|
1991
|
-
<img src="http://m.odeon.co.uk/_uploads/offers_competitions/
|
1992
|
-
<
|
1993
|
-
|
1994
|
-
|
1995
|
-
|
2065
|
+
<img src="http://m.odeon.co.uk/_uploads/offers_competitions/300x170_2819fb46b09907ca7e7774ae36a51914.jpg" />
|
2066
|
+
<i class="film-icon-img-ribbon">Book to win</i>
|
2067
|
+
<h4>Win a trip for two to Paris</h4>
|
2068
|
+
<p>With Suite Francaise</p>
|
2069
|
+
<p class="info-line"><i class="film-icon-expiry"></i><strong>Expires 31/03/2015</strong></p>
|
2070
|
+
<a class="btn blue" href="/offers-and-promotions/win_a_trip_for_two_to_paris/182/" >View this competition</a>
|
1996
2071
|
</div>
|
1997
2072
|
</div> <div class="span4">
|
1998
2073
|
<div class="teaserComponent comp">
|
1999
|
-
<img src="http://m2.odeon.co.uk/_uploads/offers_competitions/
|
2074
|
+
<img src="http://m2.odeon.co.uk/_uploads/offers_competitions/300x170_4410a0df47b01260b962d91e5f95ca2f.jpg" />
|
2000
2075
|
<i class="film-icon-img-ribbon">Book to win</i>
|
2001
|
-
<h4>Win a
|
2002
|
-
<p>
|
2003
|
-
<p class="info-line"><i class="film-icon-expiry"></i><strong>Expires
|
2004
|
-
<a class="btn blue" href="/offers-and-promotions/
|
2076
|
+
<h4>Win a trip to Atlanta </h4>
|
2077
|
+
<p>And see the world of Divergent</p>
|
2078
|
+
<p class="info-line"><i class="film-icon-expiry"></i><strong>Expires 19/03/2015</strong></p>
|
2079
|
+
<a class="btn blue" href="/offers-and-promotions/win_a_trip_to_atlanta/180/" >View this competition</a>
|
2005
2080
|
</div>
|
2006
2081
|
</div> <div class="span4">
|
2007
2082
|
<div class="teaserComponent comp">
|
2008
|
-
<img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/offers_competitions/
|
2083
|
+
<img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/offers_competitions/300x170_4dbc85326e4bf5dd27bda72605def0f9.jpg" />
|
2009
2084
|
<i class="film-icon-img-ribbon">Book to win</i>
|
2010
|
-
<h4>Win
|
2011
|
-
<p>With
|
2012
|
-
<p class="info-line"><i class="film-icon-expiry"></i><strong>Expires
|
2013
|
-
<a class="btn blue" href="/offers-and-promotions/
|
2085
|
+
<h4>Win Swan Lake Prizes</h4>
|
2086
|
+
<p>With ODEON</p>
|
2087
|
+
<p class="info-line"><i class="film-icon-expiry"></i><strong>Expires 17/03/2015</strong></p>
|
2088
|
+
<a class="btn blue" href="/offers-and-promotions/win_swan_lake_prizes/181/" >View this competition</a>
|
2014
2089
|
</div>
|
2015
2090
|
</div> </div>
|
2016
2091
|
</div>
|
@@ -2086,10 +2161,10 @@
|
|
2086
2161
|
|
2087
2162
|
</div>
|
2088
2163
|
<div class="fd-quickbite-softdrink">
|
2089
|
-
<img src="http://odeon
|
2164
|
+
<img src="http://m.odeon.co.uk/_uploads/cached/static/img/pepsi.png" alt="Pepsi">
|
2090
2165
|
</div>
|
2091
2166
|
<div class="fd-quickbite-popcorn">
|
2092
|
-
<img src="http://
|
2167
|
+
<img src="http://m2.odeon.co.uk/_uploads/cached/static/img/popcorn.png" alt="Popcorn">
|
2093
2168
|
</div>
|
2094
2169
|
</div>
|
2095
2170
|
<script type="text/javascript" charset="utf-8">
|
@@ -2122,7 +2197,7 @@
|
|
2122
2197
|
<div class="span12 white border-blue">
|
2123
2198
|
<div class="tab-content">
|
2124
2199
|
<div class="tab-pane cinema-info active" id="cinema-info" role="tabpanel">
|
2125
|
-
<p>General Manager:
|
2200
|
+
<p>General Manager: Tessa Street</p>
|
2126
2201
|
<p>ODEON Leicester Square is situated in the centre of London inside Leicester Square. The cinema has 1 main screen and 5 studios (Costa) Royal Circle seating, 5 ATMs which are located at the front of the cinema.</p>
|
2127
2202
|
<h3>Local Facility</h3>
|
2128
2203
|
<p>The cinema is situated in the heart of the West End and is surrounded by bars, restaurants, pubs, clubs of every description. <br />
|
@@ -2177,7 +2252,10 @@ The ODEON Studios Screens are located across three floors; Screen 1 is on the gr
|
|
2177
2252
|
Access to the Screens is via lift or stairs with handrails; the lift is directly into the Screen because within the floor foyers there are steps with no access for Wheelchair users or those with limited mobility.<br />
|
2178
2253
|
<br />
|
2179
2254
|
<b>Location of Washroom Facilities</b><br />
|
2180
|
-
Male and female washrooms are located on the first floor, with a fully accessible toilet only available within the ground floor foyer
|
2255
|
+
Male and female washrooms are located on the first floor, with a fully accessible toilet only available within the ground floor foyer.<br />
|
2256
|
+
<br />
|
2257
|
+
<b>Parking</b><br />
|
2258
|
+
<a href="http://www.parkjockey.com/odeon-leicester-square?utm_source=odeon&utm_medium=access_page&utm_campaign=odeon" target="_blank">The cinema has no parking, to find or pre book your nearest car parking space for ODEON Leicester Square please click here</a>.</p>
|
2181
2259
|
<p>
|
2182
2260
|
CEA Card: As part of a general cinema industry initiative, all our cinemas accept the CEA Card which entitles the holder to one free ticket for their carer. For further
|
2183
2261
|
information please visit <a target="_blank" href="http://www.ceacard.co.uk">www.ceacard.co.uk</a> (opens in a new window).
|
@@ -2302,7 +2380,7 @@ Male and female washrooms are located on the first floor, with a fully accessibl
|
|
2302
2380
|
<div class="row">
|
2303
2381
|
<div class="span4">
|
2304
2382
|
<div class="teaserComponent comp">
|
2305
|
-
<img src="http://
|
2383
|
+
<img src="http://odeon-fastly.krankikom.de.global.prod.fastly.net/_uploads/cached/static/img/cinema-info-01.jpg">
|
2306
2384
|
<h4>Conferencing</h4>
|
2307
2385
|
<ul>
|
2308
2386
|
<li>AGMs</li>
|
@@ -2316,7 +2394,7 @@ Male and female washrooms are located on the first floor, with a fully accessibl
|
|
2316
2394
|
</div>
|
2317
2395
|
<div class="span4">
|
2318
2396
|
<div class="teaserComponent comp">
|
2319
|
-
<img src="http://odeon
|
2397
|
+
<img src="http://m.odeon.co.uk/_uploads/cached/static/img/cinema-info-02.jpg">
|
2320
2398
|
<h4>Private screenings</h4>
|
2321
2399
|
<ul>
|
2322
2400
|
<li>Corporate hospitality</li>
|
@@ -2328,7 +2406,7 @@ Male and female washrooms are located on the first floor, with a fully accessibl
|
|
2328
2406
|
</div>
|
2329
2407
|
<div class="span4">
|
2330
2408
|
<div class="teaserComponent comp">
|
2331
|
-
<img src="http://odeon
|
2409
|
+
<img src="http://m2.odeon.co.uk/_uploads/cached/static/img/cinema-info-03.jpg">
|
2332
2410
|
<h4>Venue hire</h4>
|
2333
2411
|
<ul>
|
2334
2412
|
<li>Film shoots</li>
|
@@ -2369,18 +2447,13 @@ Male and female washrooms are located on the first floor, with a fully accessibl
|
|
2369
2447
|
//-->
|
2370
2448
|
</script> <div class="drev-inpage-banner-outer-bottom">
|
2371
2449
|
<div class="drev-inpage-banner-inner -ce-capture">
|
2372
|
-
|
2373
|
-
</div>
|
2450
|
+
</div>
|
2374
2451
|
</div>
|
2375
2452
|
|
2376
2453
|
<div id="ad_skyscraper" class="drev-skyscraper-banner-one -ce-capture">
|
2377
2454
|
<script type='text/javascript'><!--// <![CDATA[
|
2378
2455
|
OA_show(12);
|
2379
2456
|
// ]]> --></script><noscript><a target='_blank' href='http://ads.odeon.co.uk/www/delivery/ck.php?n=ps0297340'><img border='0' alt='' src='http://ads.odeon.co.uk/www/delivery/avw.php?zoneid=12&n=ps0297340' /></a></noscript> </div>
|
2380
|
-
<div id="ad_skyscraper2" class="drev-skyscraper-banner-two -ce-capture">
|
2381
|
-
<script type='text/javascript'><!--// <![CDATA[
|
2382
|
-
OA_show(21);
|
2383
|
-
// ]]> --></script><noscript><a target='_blank' href='http://ads.odeon.co.uk/www/delivery/ck.php?n=a3b7b2a4'><img border='0' alt='' src='http://ads.odeon.co.uk/www/delivery/avw.php?zoneid=21&n=a3b7b2a4' /></a></noscript> </div>
|
2384
2457
|
<footer>
|
2385
2458
|
<div class="row content">
|
2386
2459
|
<hr />
|
@@ -2430,14 +2503,12 @@ Male and female washrooms are located on the first floor, with a fully accessibl
|
|
2430
2503
|
<li><a href="http://www.odeon.co.uk/contactus/">Contact Us</a></li>
|
2431
2504
|
<li><a href="http://www.odeon.co.uk/privacy-and-legal/cookie-policy/">About our Cookies</a></li>
|
2432
2505
|
</ul>
|
2433
|
-
<h2>Filmline: 0871 22 44 007</h2>
|
2434
|
-
<p>Calls cost 10p per minute plus network extras.</p>
|
2435
2506
|
</div>
|
2436
2507
|
</div>
|
2437
2508
|
<hr />
|
2438
2509
|
<div class="container">
|
2439
2510
|
<div class="span9">
|
2440
|
-
<span>© ODEON Cinemas Holdings Limited 2006 to
|
2511
|
+
<span>© ODEON Cinemas Holdings Limited 2006 to 2015 - All rights reserved.</span>
|
2441
2512
|
</div>
|
2442
2513
|
<div class="span3">
|
2443
2514
|
<ul class="inline">
|