node-csfd-api-racintom 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +13 -0
- package/.eslintrc.json +33 -0
- package/.gitattributes +2 -0
- package/.github/FUNDING.yml +8 -0
- package/.github/pull_request_template.md +19 -0
- package/.github/workflows/main.yml +40 -0
- package/.github/workflows/publish.yml +73 -0
- package/.github/workflows/test.yml +43 -0
- package/.husky/pre-commit +1 -0
- package/.idea/codeStyles/Project.xml +72 -0
- package/.idea/codeStyles/codeStyleConfig.xml +5 -0
- package/.idea/inspectionProfiles/Project_Default.xml +6 -0
- package/.idea/misc.xml +6 -0
- package/.idea/modules.xml +8 -0
- package/.idea/node-csfd-api.iml +9 -0
- package/.idea/prettier.xml +6 -0
- package/.idea/vcs.xml +7 -0
- package/.nvmrc +1 -0
- package/.prettierignore +8 -0
- package/.prettierrc +10 -0
- package/.vscode/settings.json +16 -0
- package/Dockerfile +19 -0
- package/README.md +510 -0
- package/demo.ts +35 -0
- package/eslint.config.mjs +55 -0
- package/package.json +86 -0
- package/server.ts +66 -0
- package/src/fetchers/fetch.polyfill.ts +7 -0
- package/src/fetchers/index.ts +25 -0
- package/src/helpers/creator.helper.ts +95 -0
- package/src/helpers/global.helper.ts +70 -0
- package/src/helpers/movie.helper.ts +276 -0
- package/src/helpers/search-user.helper.ts +19 -0
- package/src/helpers/search.helper.ts +66 -0
- package/src/helpers/user-ratings.helper.ts +62 -0
- package/src/index.ts +42 -0
- package/src/interfaces/creator.interface.ts +14 -0
- package/src/interfaces/global.ts +36 -0
- package/src/interfaces/movie.interface.ts +157 -0
- package/src/interfaces/search.interface.ts +32 -0
- package/src/interfaces/user-ratings.interface.ts +21 -0
- package/src/services/creator.service.ts +34 -0
- package/src/services/movie.service.ts +89 -0
- package/src/services/search.service.ts +101 -0
- package/src/services/user-ratings.service.ts +106 -0
- package/src/vars.ts +13 -0
- package/tests/creator.test.ts +182 -0
- package/tests/fetchers.test.ts +109 -0
- package/tests/global.test.ts +35 -0
- package/tests/helpers.test.ts +59 -0
- package/tests/mocks/creator-actor.html.ts +2244 -0
- package/tests/mocks/creator-composer-empty.html.ts +683 -0
- package/tests/mocks/creator-director.html.ts +3407 -0
- package/tests/mocks/movie1.html.ts +1430 -0
- package/tests/mocks/movie2.html.ts +740 -0
- package/tests/mocks/movie3.html.ts +1843 -0
- package/tests/mocks/movie4.html.ts +1568 -0
- package/tests/mocks/search.html.ts +838 -0
- package/tests/mocks/series1.html.ts +1540 -0
- package/tests/mocks/userRatings.html.ts +1354 -0
- package/tests/movie.test.ts +606 -0
- package/tests/search.test.ts +379 -0
- package/tests/services.test.ts +106 -0
- package/tests/user-ratings.test.ts +142 -0
- package/tests/vars.test.ts +34 -0
- package/tsconfig.json +23 -0
- package/vitest.config.mts +10 -0
|
@@ -0,0 +1,3407 @@
|
|
|
1
|
+
export const directorMock = `
|
|
2
|
+
|
|
3
|
+
<!DOCTYPE html>
|
|
4
|
+
<html lang="cs-CZ">
|
|
5
|
+
<head>
|
|
6
|
+
<meta charset="utf-8">
|
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
8
|
+
<title>Quentin Tarantino | ČSFD.cz</title>
|
|
9
|
+
<script>
|
|
10
|
+
var ab_detection = 'xbax';
|
|
11
|
+
window[ab_detection] = 1;
|
|
12
|
+
</script>
|
|
13
|
+
<script src="/nativeads.js"></script>
|
|
14
|
+
<script>
|
|
15
|
+
window.dataLayer = window.dataLayer || [];
|
|
16
|
+
function gtag() {window.dataLayer.push(arguments);}
|
|
17
|
+
|
|
18
|
+
gtag('consent', 'default', {
|
|
19
|
+
'ad_storage': 'denied',
|
|
20
|
+
'ad_user_data': 'denied',
|
|
21
|
+
'ad_personalization': 'denied',
|
|
22
|
+
'analytics_storage': 'denied',
|
|
23
|
+
'functionality_storage': 'denied',
|
|
24
|
+
'personalization_storage': 'denied',
|
|
25
|
+
'security_storage': 'denied'
|
|
26
|
+
});
|
|
27
|
+
|
|
28
|
+
window.didomiOnReady = window.didomiOnReady || [];
|
|
29
|
+
window.didomiOnReady.push(function () {
|
|
30
|
+
var consentIsGranted = false;
|
|
31
|
+
var consentObject = {};
|
|
32
|
+
if (Didomi.getUserConsentStatusForPurpose('publishers-Kqq3iPge')) {
|
|
33
|
+
consentObject.analytics_storage = 'granted';
|
|
34
|
+
consentIsGranted = true;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
if (Didomi.getUserConsentStatusForVendor('google')) {
|
|
38
|
+
consentObject.ad_storage = 'granted';
|
|
39
|
+
consentObject.ad_user_data = 'granted';
|
|
40
|
+
consentObject.ad_personalization = 'granted';
|
|
41
|
+
consentObject.functionality_storage = 'granted';
|
|
42
|
+
consentObject.personalization_storage = 'granted';
|
|
43
|
+
consentObject.security_storage = 'granted';
|
|
44
|
+
consentIsGranted = true;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
if (consentIsGranted) {
|
|
48
|
+
gtag('consent', 'update', consentObject);
|
|
49
|
+
|
|
50
|
+
window.dataLayer.push({
|
|
51
|
+
'event': 'consent_init',
|
|
52
|
+
'consent': consentObject
|
|
53
|
+
});
|
|
54
|
+
}
|
|
55
|
+
});
|
|
56
|
+
|
|
57
|
+
var googleAnalyticsPageViewData = {"event":"page_view","site":"www.csfd.cz","platform":"web","environment":"production","language":"cs","device":"desktop","user":{"id":null,"adblock":false},"page":{"id":2120,"type":"Creator","title":null,"url":"https:\/\/www.csfd.cz\/tvurce\/2120-quentin-tarantino\/prehled\/","path":"\/tvurce\/2120-quentin-tarantino\/prehled\/","section":"Creator"},"_clear":true};
|
|
58
|
+
if (googleAnalyticsPageViewData !== null) {
|
|
59
|
+
googleAnalyticsPageViewData.page.title = "Quentin Tarantino | ČSFD.cz";
|
|
60
|
+
googleAnalyticsPageViewData.user.adblock = !!window[ab_detection];
|
|
61
|
+
var sp = null;
|
|
62
|
+
if (window.localStorage !== null) {
|
|
63
|
+
var i = window.localStorage.getItem('sp');
|
|
64
|
+
if (i === '1' || i === '2') {
|
|
65
|
+
sp = parseInt(i, 10);
|
|
66
|
+
} else {
|
|
67
|
+
sp = Math.floor(Math.random() * 2) + 1;
|
|
68
|
+
window.localStorage.setItem('sp', sp);
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
googleAnalyticsPageViewData.status_pair = sp === null ? Math.floor(Math.random() * 2) + 1 : sp;
|
|
72
|
+
window.dataLayer.push(googleAnalyticsPageViewData);
|
|
73
|
+
}
|
|
74
|
+
</script>
|
|
75
|
+
<script>
|
|
76
|
+
window.didomiConfig = {
|
|
77
|
+
languages: {
|
|
78
|
+
enabled: ["cs"],
|
|
79
|
+
default: "cs"
|
|
80
|
+
}
|
|
81
|
+
};
|
|
82
|
+
window.gdprAppliesGlobally=true;(function(){function a(e){if(!window.frames[e]){if(document.body&&document.body.firstChild){var t=document.body;var n=document.createElement("iframe");n.style.display="none";n.name=e;n.title=e;t.insertBefore(n,t.firstChild)} else{setTimeout(function(){a(e)},5)}}}function e(n,r,o,c,s){function e(e,t,n,a){if(typeof n!=="function"){return}if(!window[r]){window[r]=[]}var i=false;if(s){i=s(e,t,n)}if(!i){window[r].push({command:e,parameter:t,callback:n,version:a})}}e.stub=true;function t(a){if(!window[n]||window[n].stub!==true){return}if(!a.data){return} var i=typeof a.data==="string";var e;try{e=i?JSON.parse(a.data):a.data}catch(t){return}if(e[o]){var r=e[o];window[n](r.command,r.parameter,function(e,t){var n={};n[c]={returnValue:e,success:t,callId:r.callId};a.source.postMessage(i?JSON.stringify(n):n,"*")},r.version)}} if(typeof window[n]!=="function"){window[n]=e;if(window.addEventListener){window.addEventListener("message",t,false)}else{window.attachEvent("onmessage",t)}}}e("__tcfapi","__tcfapiBuffer","__tcfapiCall","__tcfapiReturn");a("__tcfapiLocator"); (function(e){var t=document.createElement("script");t.id="spcloader";t.type="text/javascript";t.async=true;t.src="https://sdk.privacy-center.org/"+e+"/loader.js?target="+document.location.hostname;t.charset="utf-8";var n=document.getElementsByTagName("script")[0];n.parentNode.insertBefore(t,n)})("9a8e2159-3781-4da1-9590-fbf86806f86e")})();
|
|
83
|
+
</script>
|
|
84
|
+
<script src="https://cdn.cpex.cz/cmp/v2/cpex-cmp-upgrade.min.js" type="text/javascript"></script>
|
|
85
|
+
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
|
|
86
|
+
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
|
|
87
|
+
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
|
|
88
|
+
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
|
|
89
|
+
})(window,document,'script','dataLayer',"GTM-TM3S526");</script>
|
|
90
|
+
<script type="text/javascript">
|
|
91
|
+
<!--//--><![CDATA[//><!--
|
|
92
|
+
var pp_gemius_identifier = '.Xo70CM6eCnBhv6vp5QQNcR77xEWf47KiIqfXU6rmdf.e7';
|
|
93
|
+
var pp_gemius_use_cmp = true;
|
|
94
|
+
// lines below shouldn't be edited
|
|
95
|
+
function gemius_pending(i) { window[i] = window[i] || function() { var x = window[i+'_pdata'] = window[i+'_pdata'] || []; x[x.length]=arguments;};};
|
|
96
|
+
gemius_pending('gemius_hit'); gemius_pending('gemius_event'); gemius_pending('pp_gemius_hit'); gemius_pending('pp_gemius_event');
|
|
97
|
+
(function(d,t) { try { var gt=d.createElement(t),s=d.getElementsByTagName(t)[0],l='http'+((location.protocol=='https:')?'s':''); gt.setAttribute('async','async');
|
|
98
|
+
gt.setAttribute('defer','defer'); gt.src=l+'://spir.hit.gemius.pl/xgemius.js'; s.parentNode.insertBefore(gt,s);} catch (e) { }})(document,'script');
|
|
99
|
+
//--><!]]>
|
|
100
|
+
</script>
|
|
101
|
+
|
|
102
|
+
<meta name="description" content="Vše o tvůrci Quentin Tarantino: Filmografie, Biografie, Zajímavosti, Videa, Galerie, Diskuze a další...">
|
|
103
|
+
|
|
104
|
+
<link rel="alternate" hreflang="cs-cz" href="https://www.csfd.cz/tvurce/2120-quentin-tarantino/prehled/" />
|
|
105
|
+
<link rel="alternate" hreflang="sk-sk" href="https://www.csfd.sk/tvorca/2120-quentin-tarantino/prehlad/" />
|
|
106
|
+
<link rel="alternate" hreflang="de-at" href="https://www.filmbooster.at/filmemacher/2120-quentin-tarantino/ubersicht/" />
|
|
107
|
+
<link rel="alternate" hreflang="en-ca" href="https://www.filmbooster.ca/creator/2120-quentin-tarantino/overview/" />
|
|
108
|
+
<link rel="alternate" hreflang="en-gb" href="https://www.filmbooster.co.uk/creator/2120-quentin-tarantino/overview/" />
|
|
109
|
+
<link rel="alternate" hreflang="en-us" href="https://www.filmbooster.com/creator/2120-quentin-tarantino/overview/" />
|
|
110
|
+
<link rel="alternate" hreflang="en-au" href="https://www.filmbooster.com.au/creator/2120-quentin-tarantino/overview/" />
|
|
111
|
+
<link rel="alternate" hreflang="de-de" href="https://www.filmbooster.de/filmemacher/2120-quentin-tarantino/ubersicht/" />
|
|
112
|
+
<link rel="alternate" hreflang="es-es" href="https://www.filmbooster.es/cineasta/2120-quentin-tarantino/resumen/" />
|
|
113
|
+
<link rel="alternate" hreflang="fi-fi" href="https://www.filmbooster.fi/tekija/2120-quentin-tarantino/yleista/" />
|
|
114
|
+
<link rel="alternate" hreflang="fr-fr" href="https://www.filmbooster.fr/artiste/2120-quentin-tarantino/apercu/" />
|
|
115
|
+
<link rel="alternate" hreflang="hu-hu" href="https://www.filmbooster.hu/alkoto/2120-quentin-tarantino/attekintes/" />
|
|
116
|
+
<link rel="alternate" hreflang="nl-nl" href="https://www.filmbooster.nl/maker/2120-quentin-tarantino/overzicht/" />
|
|
117
|
+
<link rel="alternate" hreflang="pl-pl" href="https://www.filmbooster.pl/tworca/2120-quentin-tarantino/przeglad/" />
|
|
118
|
+
<link rel="alternate" hreflang="pt-pt" href="https://www.filmbooster.pt/criador/2120-quentin-tarantino/resumo/" />
|
|
119
|
+
|
|
120
|
+
<link rel="canonical" href="https://www.csfd.cz/tvurce/2120-quentin-tarantino/prehled/">
|
|
121
|
+
|
|
122
|
+
<meta property="og:site_name" content="ČSFD.cz">
|
|
123
|
+
<meta property="og:image" content="//image.pmgstatic.com/cache/resized/w936/files/images/film/photos/000/127/127233_d667d6.jpg">
|
|
124
|
+
<meta property="og:image" content="//image.pmgstatic.com/cache/resized/w936/files/images/film/photos/164/503/164503407_c93ac9.jpg">
|
|
125
|
+
<meta property="og:image" content="//image.pmgstatic.com/cache/resized/w936/files/images/film/photos/163/565/163565021_38fdcc.jpg">
|
|
126
|
+
<meta property="og:description" content="Vše o tvůrci Quentin Tarantino: Filmografie, Biografie, Zajímavosti, Videa, Galerie, Diskuze a další...">
|
|
127
|
+
<meta property="og:title" content="Quentin Tarantino | ČSFD.cz">
|
|
128
|
+
<meta property="og:type" content="director">
|
|
129
|
+
<meta property="og:url" content="https://www.csfd.cz/tvurce/2120-quentin-tarantino/prehled/">
|
|
130
|
+
<meta property="fb:app_id" content="260163667481043">
|
|
131
|
+
|
|
132
|
+
<meta name="twitter:card" content="summary_large_image">
|
|
133
|
+
<meta name="twitter:url" content="https://www.csfd.cz/tvurce/2120-quentin-tarantino/prehled/">
|
|
134
|
+
<meta name="twitter:title" content="Quentin Tarantino | ČSFD.cz">
|
|
135
|
+
<meta name="twitter:description" content="Vše o tvůrci Quentin Tarantino: Filmografie, Biografie, Zajímavosti, Videa, Galerie, Diskuze a další...">
|
|
136
|
+
<meta name="twitter:image" content="//image.pmgstatic.com/cache/resized/w936/files/images/film/photos/000/127/127233_d667d6.jpg">
|
|
137
|
+
<meta name="theme-color" content="#ba0305">
|
|
138
|
+
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#ba0305">
|
|
139
|
+
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#ba0305">
|
|
140
|
+
<link rel="stylesheet" href="//static.pmgstatic.com/assets/web-css/004abeaf57e23c8fe28a2473e92e11d5/styles.min.css">
|
|
141
|
+
<link rel="shortcut icon" href="//static.pmgstatic.com/assets/images/4b37ac5ff3cce04f5ea0278688618768/favicon.ico">
|
|
142
|
+
<link rel="apple-touch-icon" href="//static.pmgstatic.com/assets/images/4b37ac5ff3cce04f5ea0278688618768/apple-touch-icon.png">
|
|
143
|
+
<script src="//static.pmgstatic.com/assets/vendor/672bc7a35152f1a31eea0f71cc398bdb/jquery.min.js"></script>
|
|
144
|
+
<script src="//static.pmgstatic.com/assets/web-js/29a6231a0410e2580881e75f9858280b/scripts.min.js" defer></script>
|
|
145
|
+
|
|
146
|
+
<script type="text/javascript">
|
|
147
|
+
window.AdsObject = {};
|
|
148
|
+
window.sasUrl = "https://a.csfd.cz/csfd";
|
|
149
|
+
</script>
|
|
150
|
+
<script>
|
|
151
|
+
(function () {
|
|
152
|
+
function loadScript (url, name) {
|
|
153
|
+
var script = document.createElement('script')
|
|
154
|
+
script.src = url
|
|
155
|
+
script.fetchPriority = 'high'
|
|
156
|
+
document.head.appendChild(script)
|
|
157
|
+
}
|
|
158
|
+
// R2B2 skript pro HB
|
|
159
|
+
var scriptType = window.innerWidth <= 500 ? 'mobile' : 'desktop'
|
|
160
|
+
loadScript('//trackad.cz/hb/pomoMediaGroup/pomo.csfd.cz_' + scriptType)
|
|
161
|
+
loadScript('//delivery.r2b2.cz/get/pomo.csfd.cz/hb/video_preroll')
|
|
162
|
+
// cpexPackage
|
|
163
|
+
window.cpexPackageConfig = {
|
|
164
|
+
publisherSettingsPath: 'https://cdn.cpex.cz/settings/' + isOn('stageSetPub', 'stage', 'production') + '/csfd.js',
|
|
165
|
+
websiteSettingsPath: 'https://cdn.cpex.cz/settings/' + isOn('stageSetWeb', 'stage', 'production') + '/csfd/csfd.cz.js',
|
|
166
|
+
errorPath: ''
|
|
167
|
+
}
|
|
168
|
+
function isOn(keyword, on, off) { return window.location.href.indexOf(keyword) > -1 ? on : off }
|
|
169
|
+
loadScript('https://cdn.cpex.cz/' + isOn('stagePackage', 'stage/', '') + 'package/cpex-package' + isOn('debug', '.js', '.min.js'))
|
|
170
|
+
})()
|
|
171
|
+
</script>
|
|
172
|
+
|
|
173
|
+
<script id="caroda-videoplayer-script" src="https://publisher.caroda.io/videoPlayer/caroda.min.js?ctok=231efd424e405a" crossorigin="anonymous" defer></script>
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
<script id="videojs-vendor" src="//static.pmgstatic.com/assets/vendor/672bc7a35152f1a31eea0f71cc398bdb/videojs/video.min.js" async defer></script>
|
|
177
|
+
<script type="text/javascript" src="https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1" async defer></script>
|
|
178
|
+
<link rel="stylesheet" href="//static.pmgstatic.com/assets/vendor/672bc7a35152f1a31eea0f71cc398bdb/videojs/video-js.min.css">
|
|
179
|
+
</head>
|
|
180
|
+
|
|
181
|
+
<body id="top" class="lang-1" data-page="creator">
|
|
182
|
+
<div class="body">
|
|
183
|
+
<div class="ad-wrapper">
|
|
184
|
+
<div id="leaderboard-wrapper">
|
|
185
|
+
<p class="box-banner-text-center">Reklama</p>
|
|
186
|
+
<div id="leaderboard" class="ad-pmg" style="height: 200px;"></div>
|
|
187
|
+
</div>
|
|
188
|
+
<div class="box box-banner-mobile">
|
|
189
|
+
<p class="box-banner-text-center">Reklama</p>
|
|
190
|
+
<div id="mobile_leaderboard" class="ad-pmg" style="height: 100px;"></div>
|
|
191
|
+
</div>
|
|
192
|
+
</div>
|
|
193
|
+
|
|
194
|
+
<div id="page-wrapper">
|
|
195
|
+
|
|
196
|
+
<div class="top-info">
|
|
197
|
+
<div class="top-info-content">
|
|
198
|
+
<p>
|
|
199
|
+
<a href="/akce/499-csfd-projekce-gladiator-ii/">ČSFD projekce <em>Gladiátor II</em></a>
|
|
200
|
+
</p>
|
|
201
|
+
</div>
|
|
202
|
+
</div>
|
|
203
|
+
|
|
204
|
+
<header class="page-header user-not-logged projection-on">
|
|
205
|
+
<div class="header-main">
|
|
206
|
+
<div class="logo">
|
|
207
|
+
<a href="/" class="csfd-cz">ČSFD.cz</a>
|
|
208
|
+
</div>
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
<div class="header-search">
|
|
212
|
+
<form id="main-search-form" action="/hledat/" data-autocomplete-url="/api/search/autocomplete/?q=__query__" method="get" role="search">
|
|
213
|
+
<div class="search-input">
|
|
214
|
+
<input name="q" type="search" autocomplete="off" placeholder="Vyhledávání">
|
|
215
|
+
<a href="javascript:void(0);" class="input-search-close">
|
|
216
|
+
<i class="icon icon-close"></i>
|
|
217
|
+
</a>
|
|
218
|
+
<button type="submit" class="btn-search"><i class="icon icon-search"></i><span>Hledat</span></button>
|
|
219
|
+
</div>
|
|
220
|
+
</form>
|
|
221
|
+
|
|
222
|
+
<a href="/podrobne-vyhledavani/" class="detailed-search">Podrobné vyhledávání</a>
|
|
223
|
+
|
|
224
|
+
</div>
|
|
225
|
+
|
|
226
|
+
<ul class="header-bar">
|
|
227
|
+
<li class="item-search">
|
|
228
|
+
<a href="#show-search" class="user-link show-search">
|
|
229
|
+
<i class="icon icon-search"></i>
|
|
230
|
+
</a>
|
|
231
|
+
</li>
|
|
232
|
+
<li>
|
|
233
|
+
<a href="/prihlaseni/" rel="dropdownContent" class="my-account user-link">
|
|
234
|
+
<i class="icon icon-user"></i> <span>Můj účet</span>
|
|
235
|
+
</a>
|
|
236
|
+
<div class="dropdown-content main-menu">
|
|
237
|
+
<h2>Ovládací panel</h2>
|
|
238
|
+
<ul class="blue">
|
|
239
|
+
<li><a href="/prihlaseni/">Přihlášení</a></li>
|
|
240
|
+
<li><a href="/registrace/">Registrace</a></li>
|
|
241
|
+
<li><a href="/ztracene-heslo/">Zapomenuté heslo</a></li>
|
|
242
|
+
</ul>
|
|
243
|
+
<hr>
|
|
244
|
+
<ul>
|
|
245
|
+
<li><a href="/registration-motivation/?title=VyOlolOjKUHjZGH5nJEpqGNjMGShKUHjZTIxVTMcoT11VUAyVT11p1k1ZQOyMSk1ZQR2ZFOhMJcxKUHjZGH5KUHjZTIxqvOjKUHjZGH5nJufKUHjZTHkp2y0YvV" rel="registrationMotivation">Přidat film</a></li>
|
|
246
|
+
<li><a href="/registration-motivation/?title=VyOlolOjKUHjZGH5nJEpqGNjMGShKUHjZTIxVUE2KUHjZGMzpzAyVUAyVT11p1k1ZQOyMSk1ZQR2ZFOhMJcxKUHjZGH5KUHjZTIxqvOjKUHjZGH5nJufKUHjZTHkp2y0YvV" rel="registrationMotivation">Přidat tvůrce</a></li>
|
|
247
|
+
</ul>
|
|
248
|
+
</div>
|
|
249
|
+
</li>
|
|
250
|
+
</ul>
|
|
251
|
+
|
|
252
|
+
</div>
|
|
253
|
+
|
|
254
|
+
<div class="top-nav">
|
|
255
|
+
<nav class="tab-nav">
|
|
256
|
+
<ul class="tab-nav-list">
|
|
257
|
+
<li class="tab-nav-item">
|
|
258
|
+
<a href="/novinky/">Novinky</a>
|
|
259
|
+
</li>
|
|
260
|
+
<li class="tab-nav-item">
|
|
261
|
+
<a href="/televize/">Televize</a>
|
|
262
|
+
</li>
|
|
263
|
+
<li class="tab-nav-item">
|
|
264
|
+
<a href="/kino/">Kino</a>
|
|
265
|
+
</li>
|
|
266
|
+
<li class="tab-nav-item">
|
|
267
|
+
<a href="/vod/">VOD</a>
|
|
268
|
+
</li>
|
|
269
|
+
<li class="tab-nav-item">
|
|
270
|
+
<a href="/zebricky/filmy/nejlepsi/">Žebříčky</a>
|
|
271
|
+
</li>
|
|
272
|
+
<li class="tab-nav-item">
|
|
273
|
+
<a href="/bluray/">Blu-ray</a>
|
|
274
|
+
</li>
|
|
275
|
+
<li class="tab-nav-item">
|
|
276
|
+
<a href="/dvd/">DVD</a>
|
|
277
|
+
</li>
|
|
278
|
+
<li class="tab-nav-item">
|
|
279
|
+
<a href="/zanry/">Žánry<span class="top-nav-new">NEW</span></a>
|
|
280
|
+
</li>
|
|
281
|
+
<li class="tab-nav-item">
|
|
282
|
+
<a href="/oceneni/">Ocenění</a>
|
|
283
|
+
</li>
|
|
284
|
+
<li class="tab-nav-item">
|
|
285
|
+
<a href="/uzivatele/">Uživatelé</a>
|
|
286
|
+
</li>
|
|
287
|
+
<li class="tab-nav-item">
|
|
288
|
+
<a href="/diskuze/">Diskuze</a>
|
|
289
|
+
</li>
|
|
290
|
+
<li class="tab-nav-item">
|
|
291
|
+
<a href="https://shop.csfd.cz"><i class="icon icon-shopping-cart"></i>Shop</a>
|
|
292
|
+
</li>
|
|
293
|
+
</ul>
|
|
294
|
+
<ul class="tab-nav-more">
|
|
295
|
+
<li>
|
|
296
|
+
<a class="tab-nav-more-btn" href="#dropdown-menu-1" rel="dropdownContent">
|
|
297
|
+
další <i class="icon icon-arrow-down"></i>
|
|
298
|
+
</a>
|
|
299
|
+
<ul id="dropdown-menu-1" class="dropdown-content">
|
|
300
|
+
<li class="tab-nav-item">
|
|
301
|
+
<a href="/novinky/">Novinky</a>
|
|
302
|
+
</li>
|
|
303
|
+
<li class="tab-nav-item">
|
|
304
|
+
<a href="/televize/">Televize</a>
|
|
305
|
+
</li>
|
|
306
|
+
<li class="tab-nav-item">
|
|
307
|
+
<a href="/kino/">Kino</a>
|
|
308
|
+
</li>
|
|
309
|
+
<li class="tab-nav-item">
|
|
310
|
+
<a href="/vod/">VOD</a>
|
|
311
|
+
</li>
|
|
312
|
+
<li class="tab-nav-item">
|
|
313
|
+
<a href="/zebricky/filmy/nejlepsi/">Žebříčky</a>
|
|
314
|
+
</li>
|
|
315
|
+
<li class="tab-nav-item">
|
|
316
|
+
<a href="/bluray/">Blu-ray</a>
|
|
317
|
+
</li>
|
|
318
|
+
<li class="tab-nav-item">
|
|
319
|
+
<a href="/dvd/">DVD</a>
|
|
320
|
+
</li>
|
|
321
|
+
<li class="tab-nav-item">
|
|
322
|
+
<a href="/zanry/">Žánry<span class="top-nav-new">NEW</span></a>
|
|
323
|
+
</li>
|
|
324
|
+
<li class="tab-nav-item">
|
|
325
|
+
<a href="/oceneni/">Ocenění</a>
|
|
326
|
+
</li>
|
|
327
|
+
<li class="tab-nav-item">
|
|
328
|
+
<a href="/uzivatele/">Uživatelé</a>
|
|
329
|
+
</li>
|
|
330
|
+
<li class="tab-nav-item">
|
|
331
|
+
<a href="/diskuze/">Diskuze</a>
|
|
332
|
+
</li>
|
|
333
|
+
<li class="tab-nav-item">
|
|
334
|
+
<a href="https://shop.csfd.cz"><i class="icon icon-shopping-cart"></i>Shop</a>
|
|
335
|
+
</li>
|
|
336
|
+
</ul>
|
|
337
|
+
</li>
|
|
338
|
+
</ul>
|
|
339
|
+
</nav>
|
|
340
|
+
</div>
|
|
341
|
+
</header>
|
|
342
|
+
|
|
343
|
+
<div class="page-content page-red">
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
<div class="creator-main">
|
|
348
|
+
<script type="application/ld+json">{"@context":"https://schema.org/","@type":"Person","name":"Quentin Tarantino","birthDate":"1963-03-27","birthPlace":{"@type":"Place","name":"Knoxville, Tennessee, USA"},"image":"//static.pmgstatic.com/assets/images/4b37ac5ff3cce04f5ea0278688618768/empty-image.svg"}</script>
|
|
349
|
+
<div class="creator-main-content">
|
|
350
|
+
<div class="creator-about">
|
|
351
|
+
<div class="creator-profile">
|
|
352
|
+
<div id="profile-header-info" class="hidden has-boxes creator-profile-head">
|
|
353
|
+
<div id="snippet--boxButtonFanclub" class="hidden snippet-box" data-auto-show-hide-parent>
|
|
354
|
+
</div>
|
|
355
|
+
|
|
356
|
+
<div id="snippet--boxButtonWatchlist" class="hidden snippet-box" data-auto-show-hide-parent>
|
|
357
|
+
</div>
|
|
358
|
+
|
|
359
|
+
<div id="snippet--boxCharts" class="snippet-box" data-auto-show-hide-parent>
|
|
360
|
+
<div class="label-simple label-favorite-white" data-auto-show-hide-data-box>
|
|
361
|
+
<a href="/zebricky/reziseri/#highlight-3-2120" title="Umístění tvůrce v sekci žebříčky se zvýrazněním.">
|
|
362
|
+
<i class="icon icon-thumb-up"></i>1. nejoblíbenější režisér
|
|
363
|
+
</a>
|
|
364
|
+
</div>
|
|
365
|
+
<div class="label-simple label-favorite-white" data-auto-show-hide-data-box>
|
|
366
|
+
<a href="/zebricky/scenariste-kameramani-skladatele/#highlight-5-2120" title="Umístění tvůrce v sekci žebříčky se zvýrazněním.">
|
|
367
|
+
<i class="icon icon-thumb-up"></i>1. nejoblíbenější scenárista
|
|
368
|
+
</a>
|
|
369
|
+
</div>
|
|
370
|
+
<div class="label-simple label-favorite-white" data-auto-show-hide-data-box>
|
|
371
|
+
<a href="/zebricky/herci-a-herecky/?fromLeft=200#highlight-1-2120" title="Umístění tvůrce v sekci žebříčky se zvýrazněním.">
|
|
372
|
+
<i class="icon icon-thumb-up"></i>269. nejoblíbenější herec
|
|
373
|
+
</a>
|
|
374
|
+
</div>
|
|
375
|
+
</div>
|
|
376
|
+
|
|
377
|
+
<div id="snippet--boxFanclub" class="snippet-box" data-auto-show-hide-parent>
|
|
378
|
+
<div class="label-simple label-fanclub" data-auto-show-hide-data-box>
|
|
379
|
+
<a href="/tvurce/2120-quentin-tarantino/prehled/?modal=fanclubList" rel="contentModal" class="btn-fanclub" data-modal-class="modal-fanclub">
|
|
380
|
+
Fanklub (39 150)
|
|
381
|
+
</a>
|
|
382
|
+
</div>
|
|
383
|
+
</div>
|
|
384
|
+
</div>
|
|
385
|
+
<div class="creator-profile-content">
|
|
386
|
+
<figure>
|
|
387
|
+
|
|
388
|
+
<img src="//image.pmgstatic.com/cache/resized/w100h132crop/files/images/creator/photos/164/515/164515525_b98f8a.jpg" loading="lazy" width="100" height="132" srcset="//image.pmgstatic.com/cache/resized/w100h132crop/files/images/creator/photos/164/515/164515525_b98f8a.jpg 1x, //image.pmgstatic.com/cache/resized/w200h264crop/files/images/creator/photos/164/515/164515525_b98f8a.jpg 2x, //image.pmgstatic.com/cache/resized/w300h396crop/files/images/creator/photos/164/515/164515525_b98f8a.jpg 3x" alt="Quentin Tarantino">
|
|
389
|
+
|
|
390
|
+
</figure>
|
|
391
|
+
|
|
392
|
+
<div class="creator-profile-content-desc">
|
|
393
|
+
<h1>
|
|
394
|
+
Quentin Tarantino
|
|
395
|
+
</h1>
|
|
396
|
+
<p>
|
|
397
|
+
nar. 27.03.1963
|
|
398
|
+
<span class="info">(61 let)</span>
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
<span class="info-place">
|
|
402
|
+
Knoxville, Tennessee, USA
|
|
403
|
+
|
|
404
|
+
</span>
|
|
405
|
+
</p>
|
|
406
|
+
</div>
|
|
407
|
+
|
|
408
|
+
<div class="creator-photo-copyright">
|
|
409
|
+
<div class="creator-photo-copyright-content">
|
|
410
|
+
<span class="item-text">
|
|
411
|
+
Photo from
|
|
412
|
+
</span>
|
|
413
|
+
<a href="/film/7743-ctyri-pokoje/" class="item-movie">
|
|
414
|
+
Čtyři pokoje
|
|
415
|
+
</a>
|
|
416
|
+
<span class="item-movie-rest">
|
|
417
|
+
(1995)
|
|
418
|
+
</span>
|
|
419
|
+
</div>
|
|
420
|
+
</div>
|
|
421
|
+
|
|
422
|
+
<div class="control-panel-mobile">
|
|
423
|
+
<a href="#dropdown-control-panel" rel="dropdownContent" class="button button-control-panel small" data-pos="js" data-pos-right-offset="16" data-pos-side="bottom-right">
|
|
424
|
+
<i class="icon icon-menu"></i>
|
|
425
|
+
|
|
426
|
+
</a>
|
|
427
|
+
</div>
|
|
428
|
+
</div>
|
|
429
|
+
</div>
|
|
430
|
+
|
|
431
|
+
<div class="creator-tabs">
|
|
432
|
+
<div class="tabs">
|
|
433
|
+
<nav class="tab-nav tab-nav-count-7">
|
|
434
|
+
<ul class="tab-nav-list">
|
|
435
|
+
<li class="tab-nav-item active">
|
|
436
|
+
<a class="tab-link" href="/tvurce/2120-quentin-tarantino/prehled/">
|
|
437
|
+
Přehled
|
|
438
|
+
</a>
|
|
439
|
+
</li>
|
|
440
|
+
<li class="tab-nav-item">
|
|
441
|
+
<a class="tab-link" href="/tvurce/2120-quentin-tarantino/biografie/">
|
|
442
|
+
Biografie
|
|
443
|
+
</a>
|
|
444
|
+
</li>
|
|
445
|
+
<li class="tab-nav-item">
|
|
446
|
+
<a class="tab-link" href="/tvurce/2120-quentin-tarantino/zajimavosti/">
|
|
447
|
+
Zajímavosti
|
|
448
|
+
</a>
|
|
449
|
+
</li>
|
|
450
|
+
<li class="tab-nav-item">
|
|
451
|
+
<a class="tab-link" href="/tvurce/2120-quentin-tarantino/videa/">
|
|
452
|
+
Videa
|
|
453
|
+
</a>
|
|
454
|
+
</li>
|
|
455
|
+
<li class="tab-nav-item">
|
|
456
|
+
<a class="tab-link" href="/tvurce/2120-quentin-tarantino/galerie/">
|
|
457
|
+
Galerie
|
|
458
|
+
</a>
|
|
459
|
+
</li>
|
|
460
|
+
<li class="tab-nav-item">
|
|
461
|
+
<a class="tab-link" href="/tvurce/2120-quentin-tarantino/oceneni/">
|
|
462
|
+
Ocenění
|
|
463
|
+
</a>
|
|
464
|
+
</li>
|
|
465
|
+
<li class="tab-nav-item">
|
|
466
|
+
<a class="tab-link" href="/tvurce/2120-quentin-tarantino/diskuze/">
|
|
467
|
+
Diskuze
|
|
468
|
+
</a>
|
|
469
|
+
</li>
|
|
470
|
+
</ul>
|
|
471
|
+
<div class="tab-nav-more">
|
|
472
|
+
<a class="tab-nav-more-btn" href="#dropdown-menu-2" rel="dropdownContent">
|
|
473
|
+
další <i class="icon icon-arrow-down"></i>
|
|
474
|
+
</a>
|
|
475
|
+
<ul id="dropdown-menu-2" class="dropdown-content">
|
|
476
|
+
<li class="tab-nav-item active">
|
|
477
|
+
<a class="tab-link" href="/tvurce/2120-quentin-tarantino/prehled/">
|
|
478
|
+
Přehled
|
|
479
|
+
</a>
|
|
480
|
+
</li>
|
|
481
|
+
<li class="tab-nav-item">
|
|
482
|
+
<a class="tab-link" href="/tvurce/2120-quentin-tarantino/biografie/">
|
|
483
|
+
Biografie
|
|
484
|
+
</a>
|
|
485
|
+
</li>
|
|
486
|
+
<li class="tab-nav-item">
|
|
487
|
+
<a class="tab-link" href="/tvurce/2120-quentin-tarantino/zajimavosti/">
|
|
488
|
+
Zajímavosti
|
|
489
|
+
</a>
|
|
490
|
+
</li>
|
|
491
|
+
<li class="tab-nav-item">
|
|
492
|
+
<a class="tab-link" href="/tvurce/2120-quentin-tarantino/videa/">
|
|
493
|
+
Videa
|
|
494
|
+
</a>
|
|
495
|
+
</li>
|
|
496
|
+
<li class="tab-nav-item">
|
|
497
|
+
<a class="tab-link" href="/tvurce/2120-quentin-tarantino/galerie/">
|
|
498
|
+
Galerie
|
|
499
|
+
</a>
|
|
500
|
+
</li>
|
|
501
|
+
<li class="tab-nav-item">
|
|
502
|
+
<a class="tab-link" href="/tvurce/2120-quentin-tarantino/oceneni/">
|
|
503
|
+
Ocenění
|
|
504
|
+
</a>
|
|
505
|
+
</li>
|
|
506
|
+
<li class="tab-nav-item">
|
|
507
|
+
<a class="tab-link" href="/tvurce/2120-quentin-tarantino/diskuze/">
|
|
508
|
+
Diskuze
|
|
509
|
+
</a>
|
|
510
|
+
</li>
|
|
511
|
+
</ul>
|
|
512
|
+
</div>
|
|
513
|
+
</nav>
|
|
514
|
+
|
|
515
|
+
<div class="tab-content creator-profile--tab-default">
|
|
516
|
+
<section class="box">
|
|
517
|
+
<header class="box-header">
|
|
518
|
+
<h2>Biografie <span class="count">(2)</span></h2>
|
|
519
|
+
</header>
|
|
520
|
+
<div class="box-content">
|
|
521
|
+
<article class="article article-white">
|
|
522
|
+
<div class="article-content article-content-justify">
|
|
523
|
+
<p>
|
|
524
|
+
Narodil se teprve šestnáctileté Connii McHugh, která mu dala křestní jméno podle své oblíbené postavy Quinta ze seriálu Gunsmoke. Jeho biologickým otcem byl jistý Tony Tarantino, který rodinu opustil když byl Quentin ještě malinký a nikdy o syna nejevil zájem (přesněji řečeno jen do doby, než se potomek stal slavným – pak se na jeho úspěchu pokoušel parazitovat). Jeho náhradním tatínkem se stal hudebník s československými kořeny, který si Connii vzal a Quentina…
|
|
525
|
+
<span class="span-more-small">(<a href="/tvurce/2120-quentin-tarantino/biografie/">více</a>)</span>
|
|
526
|
+
</p>
|
|
527
|
+
</div>
|
|
528
|
+
</article>
|
|
529
|
+
</div>
|
|
530
|
+
</section>
|
|
531
|
+
|
|
532
|
+
<section class="box box-borderless">
|
|
533
|
+
<header class="box-header">
|
|
534
|
+
<h2>Videa <span class="count">(5)</span></h2>
|
|
535
|
+
<div class="box-header-action">
|
|
536
|
+
<a href="/tvurce/2120-quentin-tarantino/videa/" class="button">Více</a>
|
|
537
|
+
</div>
|
|
538
|
+
</header>
|
|
539
|
+
<div class="box-content">
|
|
540
|
+
<div class="box box-media">
|
|
541
|
+
<figure class="box-video preview box-video-autoplay" data-autoplay-video>
|
|
542
|
+
<div class="box-videoplayer-film">
|
|
543
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/527699-tenkrat-v-hollywoodu/" class="film-title-name">Tenkrát v Hollywoodu</a> <span class="film-title-info"><span class="info">(2019)</span></span></h3> </div>
|
|
544
|
+
|
|
545
|
+
<div class="box-video-content">
|
|
546
|
+
<a href="javascript:void(0);" class="box-video-preview disabled" data-video-player-initialize="video-player-1" data-video-player-playlist-start="0" data-video-player-autoplay="" data-video-player-translations-url="/api/video-player/translations/">
|
|
547
|
+
<picture>
|
|
548
|
+
<source media="(max-width: 650px)" srcset="//image.pmgstatic.com/cache/resized/w360/files/images/film/video/preview/163/495/163495461_d25706.jpg 1x, //image.pmgstatic.com/cache/resized/w720/files/images/film/video/preview/163/495/163495461_d25706.jpg 2x, //image.pmgstatic.com/cache/resized/w1080/files/images/film/video/preview/163/495/163495461_d25706.jpg 3x" />
|
|
549
|
+
<img class="prev-img" src="//image.pmgstatic.com/cache/resized/w663/files/images/film/video/preview/163/495/163495461_d25706.jpg" loading="lazy" width="663" height="372" alt="Rozhovor 2 - Quentin Tarantino, Margot Robbie" />
|
|
550
|
+
</picture>
|
|
551
|
+
<span class="play-button"><i class="icon icon-play-simple"></i></span>
|
|
552
|
+
</a>
|
|
553
|
+
|
|
554
|
+
<div class="box-video-player">
|
|
555
|
+
<video id="video-player-1"
|
|
556
|
+
class="hidden vjs-waiting vjs-has-started"
|
|
557
|
+
controls
|
|
558
|
+
preload="none"
|
|
559
|
+
crossorigin="anonymous"
|
|
560
|
+
playsinline
|
|
561
|
+
width="637"
|
|
562
|
+
height="360"
|
|
563
|
+
|
|
564
|
+
data-video-url="/api/video-player/?data=__data__"
|
|
565
|
+
data-videos="[{"description":"Rozhovor 2 - Quentin Tarantino, Margot Robbie","language_id":3,"duration":191,"subtitles_language_id":1,"preview_image_path":"files/images/film/video/preview/163/495/163495461_d25706.jpg","preview_image_storage_id":"image-production","preview_image_width":1280,"preview_image_height":720,"film_video_id":157746741,"film_video_type_id":9,"position":2,"video_id":157752839,"copyright":"Sony Pictures Entertainment","film_type":0,"film_root_id":null,"film_root_slug":null,"film_id":527699,"film_slug":"tenkrat-v-hollywoodu","film_name":"Tenkrát v Hollywoodu","film_year":2019,"film_rating_category":1,"preview_image":{"path":"files/images/film/video/preview/163/495/163495461_d25706.jpg","storage_id":"image-production","width":1280,"height":720},"external_description":"Tenkrát v Hollywoodu: Rozhovor 2 - Quentin Tarantino, Margot Robbie","title":"<h3 class=\"film-title\"><i class=\"icon icon-rounded-square red\"></i><a href=\"/film/527699-tenkrat-v-hollywoodu/\" class=\"film-title-name\">Tenkrát v Hollywoodu</a> <span class=\"film-title-info\"><span class=\"info\">(2019)</span></span></h3>","request_data":"rlW2nJEyo0yxVwbkAGp3AGV4ZmxfVaA1LaEcqTkyGTShM3IuM2IWMUZvByfkYQWqYPW0o2gyovV6VwR2ZmZ3MTAyMTSwMQplBGOvZTHjMQLmMzL0ZwRjBTIvZzAuATR5BGLvsD"}]"
|
|
566
|
+
data-recommended-videos-url="/api/video-player/recommended-videos/?videoId=157752839&limit=2"
|
|
567
|
+
data-recommended-autoplay
|
|
568
|
+
|
|
569
|
+
>
|
|
570
|
+
<p class="vjs-no-js">To view this video please enable JavaScript, and consider upgrading to a web browser that <a href="https://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a></p>
|
|
571
|
+
</video>
|
|
572
|
+
</div>
|
|
573
|
+
</div>
|
|
574
|
+
</figure>
|
|
575
|
+
</div>
|
|
576
|
+
</div>
|
|
577
|
+
</section>
|
|
578
|
+
|
|
579
|
+
<section class="box box-nooverflow">
|
|
580
|
+
<header class="box-header">
|
|
581
|
+
<h2>Zajímavosti <span class="count">(613)</span></h2>
|
|
582
|
+
<div class="box-header-action">
|
|
583
|
+
<a href="/tvurce/2120-quentin-tarantino/zajimavosti/" class="button">Více</a>
|
|
584
|
+
</div>
|
|
585
|
+
</header>
|
|
586
|
+
<div class="box-content">
|
|
587
|
+
<article class="article article-trivia">
|
|
588
|
+
<div class="article-content article-content-justify">
|
|
589
|
+
|
|
590
|
+
<ul>
|
|
591
|
+
<li>
|
|
592
|
+
Ke své proslavené práci v půjčovně Video Archives v roce 2008 (během diskuse na festivalu v Cannes) doplnil: <em>"Panuje legenda, že jsem své filmové znalosti získal při práci v jedné videotéce. Ve skutečnosti mě tam vzali, protože jsem už filmovým expertem byl. Na téhle práci bylo fajn, že tam měli oddělení se zahraničními filmy a s klasikou. Díky tomu jsem nemusel čekat na reprízy v kině nebo v televizi. Předtím jsem si vždycky každý týden koupil televizní program, probral stanice od začátku až do konce a zaškrtl si všechno, co jsem chtěl vidět nebo nahrát. Ale ve videotéce jsem měl denně přístup ke všem těm filmům, a tak jsem se jimi pořád probíral. Stal jsem se fandou třeba <a href="https://www.csfd.cz/tvurce/3809-eric-rohmer/">Erica Rohmera</a> a podíval se tam na všechno, co natočil. Dělám to dodnes: když narazím na někoho, kdo mě zajímá, chci vidět všechno, co udělal."</em> <span class="span-more-small">
|
|
593
|
+
(<a href="/uzivatel/34-niro/">NIRO</a>)
|
|
594
|
+
|
|
595
|
+
|
|
596
|
+
</span>
|
|
597
|
+
</li>
|
|
598
|
+
</ul>
|
|
599
|
+
</div>
|
|
600
|
+
</article>
|
|
601
|
+
|
|
602
|
+
<article class="article article-trivia">
|
|
603
|
+
<div class="article-content article-content-justify">
|
|
604
|
+
|
|
605
|
+
<ul>
|
|
606
|
+
<li>
|
|
607
|
+
Ke svému "tréninku" řekl: <em>"Každému, kdo se chce stát režisérem nebo autorem, bych doporučil, aby nechodil na režii nebo na scenáristiku, ale zapsal se na hereckou školu. Všechno, co vím o psaní, jsem se naučil při hraní. Naučíš se tam, jak se před kameru vchází a jak se odchází, jak se máš pohybovat v jednom záběru. Všechny tyhle věci pak ulehčují práci režiséra nebo scenáristy. Ale přitom se na žádný škole nevyučují. (...) Když jsem byl na filmové škole, předehrávali jsme některé filmové scény. Přitom jsme ale neměli možnost číst takové scénáře jako třeba <a href="https://www.csfd.cz/film/5076-na-vychod-od-raje/">Na východ od ráje</a> nebo jim podobné. Ale já jsem měl dobrou paměť. Když jsem nějaký film viděl, vzpomněl jsem si na ten nebo jinej dialog a mohl ho zpaměti napsat. A na co jsem si nevzpomněl, o tom vůbec nepřemýšlel. Tak jsem si třeba zapsal jednu scénu z <a href="https://www.csfd.cz/film/39800-marty/">Martyho</a> a jednoduše k ní přidal jeden nový monolog - a to byl přece jen scénář <a href="https://www.csfd.cz/tvurce/81329-paddy-chayefsky/">Paddyho Chayefského</a>! Pak jsem ho dal přečíst svýmu hereckýmu partnerovi. Ten si to prolítnul a povídá: 'Tenhle monolog přee není od Chayefskýho, ale je stejně dobrej jako ta jeho věc.' To pro mě vlastně bylo první potvrzení, že bych měl svoje psaní brát vážně."</em> <span class="span-more-small">
|
|
608
|
+
(<a href="/uzivatel/34-niro/">NIRO</a>)
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
</span>
|
|
612
|
+
</li>
|
|
613
|
+
</ul>
|
|
614
|
+
</div>
|
|
615
|
+
</article>
|
|
616
|
+
|
|
617
|
+
<article class="article article-trivia">
|
|
618
|
+
<div class="article-content article-content-justify">
|
|
619
|
+
|
|
620
|
+
<ul>
|
|
621
|
+
<li>
|
|
622
|
+
Herec <a href="https://www.csfd.cz/tvurce/144-michael-madsen/">Michael Madsen</a> srovnával pracovní přístupy Tarantina a jeho nejlepšího kamaráda <a href="https://www.csfd.cz/tvurce/3054-robert-rodriguez/">Roberta Rodrigueze</a>: <em>"Robert je tichej, metodickej chlap. Hraje na place na kytaru... (...) a rád jede tak na jednu, dvě, tři klapky. Připraví záběr, sedne si, podívá se na vás a řekne: 'OK, pusť se do toho.' Odehrajete to a on: 'Fajn, jdeme dál.' Zato Quentin spíš chrlí: 'Jedemeznovu! Ještějednou!' Ten sjede záběr tak desetkrát, patnáctkrát. A vlastně nevíte, co chce. Já dělám furt to samý, znovu a znovu. Ale někdy, když jste trochu podrážděnej, tak to z vás asi něco dostane. A na to Quentin čeká, na ty malý detaily."</em> <span class="span-more-small">
|
|
623
|
+
(<a href="/uzivatel/34-niro/">NIRO</a>)
|
|
624
|
+
|
|
625
|
+
|
|
626
|
+
</span>
|
|
627
|
+
</li>
|
|
628
|
+
</ul>
|
|
629
|
+
</div>
|
|
630
|
+
</article>
|
|
631
|
+
|
|
632
|
+
</div>
|
|
633
|
+
</section>
|
|
634
|
+
|
|
635
|
+
<section class="box box-borderless">
|
|
636
|
+
<header class="box-header">
|
|
637
|
+
<h2>Galerie <span class="count">(147)</span></h2>
|
|
638
|
+
<div class="box-header-action">
|
|
639
|
+
<a href="/tvurce/2120-quentin-tarantino/galerie/" class="button">Více</a>
|
|
640
|
+
</div>
|
|
641
|
+
</header>
|
|
642
|
+
<div class="box-content"><div class="gallery-item">
|
|
643
|
+
<div class="box box-media">
|
|
644
|
+
<figure class="figure-skeleton">
|
|
645
|
+
<div class="box-photo-film">
|
|
646
|
+
<h3 class="film-title"><i class="icon icon-rounded-square red"></i><a href="/film/7741-desperado/" class="film-title-name">Desperado</a> <span class="film-title-info"><span class="info">(1995)</span></span></h3> </div>
|
|
647
|
+
|
|
648
|
+
<div class="box-copyright box-copyright-bottom">
|
|
649
|
+
<p class="p-box-copyright">Photo © Columbia Pictures</p>
|
|
650
|
+
</div>
|
|
651
|
+
|
|
652
|
+
<div class="media-img" style="padding-bottom: 147.92%">
|
|
653
|
+
<picture>
|
|
654
|
+
<source media="(max-width: 400px)" >
|
|
655
|
+
<source media="(max-width: 750px) and (min-width: 401px)" >
|
|
656
|
+
<img src="//image.pmgstatic.com/cache/resized/w468/files/images/film/photos/158/470/158470746_2629c0.jpg" loading="lazy" width="468" height="692" alt="Quentin Tarantino - Desperado - Z filmu" />
|
|
657
|
+
</picture>
|
|
658
|
+
</div>
|
|
659
|
+
</figure>
|
|
660
|
+
<figcaption>
|
|
661
|
+
<a href="/tvurce/2120-quentin-tarantino/">Quentin Tarantino</a>
|
|
662
|
+
</figcaption>
|
|
663
|
+
</div>
|
|
664
|
+
</div></div>
|
|
665
|
+
</section>
|
|
666
|
+
</div>
|
|
667
|
+
|
|
668
|
+
<section class="box box-borderless box-noborderbottom box-margintop creator-news-desktop">
|
|
669
|
+
<header class="box-header">
|
|
670
|
+
<h2>Související novinky</h2>
|
|
671
|
+
<div class="box-header-action">
|
|
672
|
+
<a href="/novinky/?creatorId=2120" class="button">více</a>
|
|
673
|
+
</div>
|
|
674
|
+
</header>
|
|
675
|
+
<div class="box-content">
|
|
676
|
+
<div class="newslist-content">
|
|
677
|
+
<div class="newslist newslist-creator">
|
|
678
|
+
<section class="newslist-item">
|
|
679
|
+
<div class="box-content">
|
|
680
|
+
<article class="article article-news article-news-60">
|
|
681
|
+
<figure class="article-img">
|
|
682
|
+
<a href="/novinky/9163-margaret-qualley-bude-viktorianska-psychopatka/">
|
|
683
|
+
<img class="img" src="//image.pmgstatic.com/cache/resized/w100h132crop/files/images/news/article/169/455/169455955_v7t0m6.jpg" loading="lazy" width="100" height="132" srcset="//image.pmgstatic.com/cache/resized/w100h132crop/files/images/news/article/169/455/169455955_v7t0m6.jpg 1x, //image.pmgstatic.com/cache/resized/w200h264crop/files/images/news/article/169/455/169455955_v7t0m6.jpg 2x, //image.pmgstatic.com/cache/resized/w300h396crop/files/images/news/article/169/455/169455955_v7t0m6.jpg 3x" alt="Margaret Qualley bude viktoriánská psychopatka">
|
|
684
|
+
</a>
|
|
685
|
+
</figure>
|
|
686
|
+
<header class="article-header">
|
|
687
|
+
<h3>
|
|
688
|
+
<a href="/novinky/9163-margaret-qualley-bude-viktorianska-psychopatka/">Margaret Qualley bude viktoriánská psychopatka</a>
|
|
689
|
+
</h3>
|
|
690
|
+
<div class="info">
|
|
691
|
+
<span class="date">31.10.2024</span>
|
|
692
|
+
</div>
|
|
693
|
+
</header>
|
|
694
|
+
<div class="article-news-content article-content-justify">
|
|
695
|
+
<div class="article-news-textshort">
|
|
696
|
+
<p>
|
|
697
|
+
Jen málokterá mladá herečka má v současném Hollywoodu tak dobrou výchozí pozici jako Margaret Qualley. Svou kariéru odstartovala menší roličkou v buddy komedii Správní chlapi, posléze se…
|
|
698
|
+
<span class="span-more-small">(<a href="/novinky/9163-margaret-qualley-bude-viktorianska-psychopatka/">více</a>)</span>
|
|
699
|
+
</p>
|
|
700
|
+
</div>
|
|
701
|
+
</div>
|
|
702
|
+
</article>
|
|
703
|
+
</div>
|
|
704
|
+
</section>
|
|
705
|
+
|
|
706
|
+
<section class="newslist-item">
|
|
707
|
+
<div class="box-content">
|
|
708
|
+
<article class="article article-news article-news-60">
|
|
709
|
+
<figure class="article-img">
|
|
710
|
+
<a href="/novinky/8991-zemrel-roger-corman/">
|
|
711
|
+
<img class="img" src="//image.pmgstatic.com/cache/resized/w100h132crop/files/images/news/article/168/931/168931666_fk4dhs.jpg" loading="lazy" width="100" height="132" srcset="//image.pmgstatic.com/cache/resized/w100h132crop/files/images/news/article/168/931/168931666_fk4dhs.jpg 1x, //image.pmgstatic.com/cache/resized/w200h264crop/files/images/news/article/168/931/168931666_fk4dhs.jpg 2x, //image.pmgstatic.com/cache/resized/w300h396crop/files/images/news/article/168/931/168931666_fk4dhs.jpg 3x" alt="Zemřel Roger Corman">
|
|
712
|
+
</a>
|
|
713
|
+
</figure>
|
|
714
|
+
<header class="article-header">
|
|
715
|
+
<h3>
|
|
716
|
+
<a href="/novinky/8991-zemrel-roger-corman/">Zemřel Roger Corman</a>
|
|
717
|
+
</h3>
|
|
718
|
+
<div class="info">
|
|
719
|
+
<span class="date">12.05.2024</span>
|
|
720
|
+
</div>
|
|
721
|
+
</header>
|
|
722
|
+
<div class="article-news-content article-content-justify">
|
|
723
|
+
<div class="article-news-textshort">
|
|
724
|
+
<p>
|
|
725
|
+
Svět filmu přišel o jednu z ikon americké kinematografie, v kalifornské Santa Monice totiž zemřel legendární americký režisér, producent a scenárista Roger Corman. Bylo mu úctyhodných osmadevadesát…
|
|
726
|
+
<span class="span-more-small">(<a href="/novinky/8991-zemrel-roger-corman/">více</a>)</span>
|
|
727
|
+
</p>
|
|
728
|
+
</div>
|
|
729
|
+
</div>
|
|
730
|
+
</article>
|
|
731
|
+
</div>
|
|
732
|
+
</section>
|
|
733
|
+
|
|
734
|
+
<div class="newslist-item">
|
|
735
|
+
<div class="article article-native">
|
|
736
|
+
<div id="native_short_1" class="ad-pmg" style="height: 115px;"></div>
|
|
737
|
+
</div>
|
|
738
|
+
</div>
|
|
739
|
+
<section class="newslist-item">
|
|
740
|
+
<div class="box-content">
|
|
741
|
+
<article class="article article-news article-news-60">
|
|
742
|
+
<figure class="article-img">
|
|
743
|
+
<a href="/novinky/8962-tarantino-rusi-the-movie-critic-jako-svuj-10-film/">
|
|
744
|
+
<img class="img" src="//image.pmgstatic.com/cache/resized/w100h132crop/files/images/news/article/168/849/168849977_b1g1e6.jpg" loading="lazy" width="100" height="132" srcset="//image.pmgstatic.com/cache/resized/w100h132crop/files/images/news/article/168/849/168849977_b1g1e6.jpg 1x, //image.pmgstatic.com/cache/resized/w200h264crop/files/images/news/article/168/849/168849977_b1g1e6.jpg 2x, //image.pmgstatic.com/cache/resized/w300h396crop/files/images/news/article/168/849/168849977_b1g1e6.jpg 3x" alt="Tarantino ruší The Movie Critic jako svůj 10. film">
|
|
745
|
+
</a>
|
|
746
|
+
</figure>
|
|
747
|
+
<header class="article-header">
|
|
748
|
+
<h3>
|
|
749
|
+
<a href="/novinky/8962-tarantino-rusi-the-movie-critic-jako-svuj-10-film/">Tarantino ruší The Movie Critic jako svůj 10. film</a>
|
|
750
|
+
</h3>
|
|
751
|
+
<div class="info">
|
|
752
|
+
<span class="date">18.04.2024</span>
|
|
753
|
+
</div>
|
|
754
|
+
</header>
|
|
755
|
+
<div class="article-news-content article-content-justify">
|
|
756
|
+
<div class="article-news-textshort">
|
|
757
|
+
<p>
|
|
758
|
+
Následující sdělení bude pro mnohé filmové diváky a zejména pak fanoušky tvorby Quentina Tarantina (Pulp Fiction: Historky z podsvětí, Hanebný pancharti) zřejmě dost pochmurné a možná i…
|
|
759
|
+
<span class="span-more-small">(<a href="/novinky/8962-tarantino-rusi-the-movie-critic-jako-svuj-10-film/">více</a>)</span>
|
|
760
|
+
</p>
|
|
761
|
+
</div>
|
|
762
|
+
</div>
|
|
763
|
+
</article>
|
|
764
|
+
</div>
|
|
765
|
+
</section>
|
|
766
|
+
|
|
767
|
+
<section class="newslist-item">
|
|
768
|
+
<div class="box-content">
|
|
769
|
+
<article class="article article-news article-news-60">
|
|
770
|
+
<figure class="article-img">
|
|
771
|
+
<a href="/novinky/8914-tom-cruise-si-zahraje-ve-filmu-alejandra-g-inarritu/">
|
|
772
|
+
<img class="img" src="//image.pmgstatic.com/cache/resized/w100h132crop/files/images/news/article/168/659/168659475_h1jmgq.jpg" loading="lazy" width="100" height="132" srcset="//image.pmgstatic.com/cache/resized/w100h132crop/files/images/news/article/168/659/168659475_h1jmgq.jpg 1x, //image.pmgstatic.com/cache/resized/w200h264crop/files/images/news/article/168/659/168659475_h1jmgq.jpg 2x, //image.pmgstatic.com/cache/resized/w300h396crop/files/images/news/article/168/659/168659475_h1jmgq.jpg 3x" alt="Tom Cruise si zahraje ve filmu Alejandra G. Iñárritu">
|
|
773
|
+
</a>
|
|
774
|
+
</figure>
|
|
775
|
+
<header class="article-header">
|
|
776
|
+
<h3>
|
|
777
|
+
<a href="/novinky/8914-tom-cruise-si-zahraje-ve-filmu-alejandra-g-inarritu/">Tom Cruise si zahraje ve filmu Alejandra G. Iñárritu</a>
|
|
778
|
+
</h3>
|
|
779
|
+
<div class="info">
|
|
780
|
+
<span class="date">23.02.2024</span>
|
|
781
|
+
</div>
|
|
782
|
+
</header>
|
|
783
|
+
<div class="article-news-content article-content-justify">
|
|
784
|
+
<div class="article-news-textshort">
|
|
785
|
+
<p>
|
|
786
|
+
Tom Cruise (Magnolia, Spalující touha), jehož mnozí nazývají poslední opravdovou velkou hollywoodskou hvězdou, se nedávno v ohromné dohodě upsal spolupráci s Warnery, pro něž by měl produkovat…
|
|
787
|
+
<span class="span-more-small">(<a href="/novinky/8914-tom-cruise-si-zahraje-ve-filmu-alejandra-g-inarritu/">více</a>)</span>
|
|
788
|
+
</p>
|
|
789
|
+
</div>
|
|
790
|
+
</div>
|
|
791
|
+
</article>
|
|
792
|
+
</div>
|
|
793
|
+
</section>
|
|
794
|
+
|
|
795
|
+
<section class="newslist-item">
|
|
796
|
+
<div class="box-content">
|
|
797
|
+
<article class="article article-news article-news-60">
|
|
798
|
+
<figure class="article-img">
|
|
799
|
+
<a href="/novinky/8890-brad-pitt-krouzi-kolem-desate-tarantinovky/">
|
|
800
|
+
<img class="img" src="//image.pmgstatic.com/cache/resized/w100h132crop/files/images/news/article/168/588/168588240_y55ucc.jpg" loading="lazy" width="100" height="132" srcset="//image.pmgstatic.com/cache/resized/w100h132crop/files/images/news/article/168/588/168588240_y55ucc.jpg 1x, //image.pmgstatic.com/cache/resized/w200h264crop/files/images/news/article/168/588/168588240_y55ucc.jpg 2x, //image.pmgstatic.com/cache/resized/w300h396crop/files/images/news/article/168/588/168588240_y55ucc.jpg 3x" alt="Brad Pitt krouží kolem desáté tarantinovky">
|
|
801
|
+
</a>
|
|
802
|
+
</figure>
|
|
803
|
+
<header class="article-header">
|
|
804
|
+
<h3>
|
|
805
|
+
<a href="/novinky/8890-brad-pitt-krouzi-kolem-desate-tarantinovky/">Brad Pitt krouží kolem desáté tarantinovky</a>
|
|
806
|
+
</h3>
|
|
807
|
+
<div class="info">
|
|
808
|
+
<span class="date">02.02.2024</span>
|
|
809
|
+
</div>
|
|
810
|
+
</header>
|
|
811
|
+
<div class="article-news-content article-content-justify">
|
|
812
|
+
<div class="article-news-textshort">
|
|
813
|
+
<p>
|
|
814
|
+
Co se týče současné tvorby oblíbeného režiséra Quentina Tarantina, už nějakou dobu víme, že jeho desátým a podle tvůrcových vlastních slov také finálním filmem má být chystaný snímek pojmenovaný The…
|
|
815
|
+
<span class="span-more-small">(<a href="/novinky/8890-brad-pitt-krouzi-kolem-desate-tarantinovky/">více</a>)</span>
|
|
816
|
+
</p>
|
|
817
|
+
</div>
|
|
818
|
+
</div>
|
|
819
|
+
</article>
|
|
820
|
+
</div>
|
|
821
|
+
</section>
|
|
822
|
+
|
|
823
|
+
</div>
|
|
824
|
+
</div>
|
|
825
|
+
</div>
|
|
826
|
+
</section>
|
|
827
|
+
</div>
|
|
828
|
+
</div>
|
|
829
|
+
</div>
|
|
830
|
+
|
|
831
|
+
<div class="box box-banner-mobile box-banner-mobile-padding">
|
|
832
|
+
<p class="box-banner-text">Reklama</p>
|
|
833
|
+
<div id="mobile_square_1" class="ad-pmg" style="height: 300px;"></div>
|
|
834
|
+
</div>
|
|
835
|
+
|
|
836
|
+
<div class="creator-filmography">
|
|
837
|
+
<section class="box">
|
|
838
|
+
<header class="box-header">
|
|
839
|
+
<h2>Režisér</h2>
|
|
840
|
+
<div class="box-header-action">
|
|
841
|
+
<form action="" method="get" data-form="get">
|
|
842
|
+
<select name="sort" data-auto-submit-form="true" data-empty-value="year" id="frm-sort-careerBox-2-sort-sort"><option value="year">seřadit od nejnovějšího</option><option value="sort_average">seřadit od nejlepšího</option><option value="rating_count">seřadit podle počtu hodnocení</option></select>
|
|
843
|
+
</form>
|
|
844
|
+
</div>
|
|
845
|
+
</header>
|
|
846
|
+
<div class="box-content">
|
|
847
|
+
<table class="no-column-borders">
|
|
848
|
+
<tbody>
|
|
849
|
+
<tr>
|
|
850
|
+
<th colspan="2">Filmy</th>
|
|
851
|
+
</tr>
|
|
852
|
+
<tr>
|
|
853
|
+
<td class="year">
|
|
854
|
+
2025
|
|
855
|
+
</td>
|
|
856
|
+
<td class="name">
|
|
857
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1328972-the-movie-critic/" class="film-title-name">The Movie Critic</a> <span class="film-title-info"></span></h3> </td>
|
|
858
|
+
</tr>
|
|
859
|
+
<tr>
|
|
860
|
+
<td class="year">
|
|
861
|
+
2019
|
|
862
|
+
</td>
|
|
863
|
+
<td class="name">
|
|
864
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/527699-tenkrat-v-hollywoodu/" class="film-title-name">Tenkrát v Hollywoodu</a> <span class="film-title-info"></span></h3> </td>
|
|
865
|
+
</tr>
|
|
866
|
+
<tr>
|
|
867
|
+
<td class="year">
|
|
868
|
+
2015
|
|
869
|
+
</td>
|
|
870
|
+
<td class="name">
|
|
871
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/362228-osm-hroznych/" class="film-title-name">Osm hrozných</a> <span class="film-title-info"></span></h3> </td>
|
|
872
|
+
</tr>
|
|
873
|
+
<tr>
|
|
874
|
+
<td class="year">
|
|
875
|
+
2012
|
|
876
|
+
</td>
|
|
877
|
+
<td class="name">
|
|
878
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/294824-nespoutany-django/" class="film-title-name">Nespoutaný Django</a> <span class="film-title-info"></span></h3> </td>
|
|
879
|
+
</tr>
|
|
880
|
+
<tr>
|
|
881
|
+
<td class="year">
|
|
882
|
+
2009
|
|
883
|
+
</td>
|
|
884
|
+
<td class="name">
|
|
885
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/117077-hanebny-pancharti/" class="film-title-name">Hanebný pancharti</a> <span class="film-title-info"></span></h3> </td>
|
|
886
|
+
</tr>
|
|
887
|
+
<tr>
|
|
888
|
+
<td class="year">
|
|
889
|
+
2007
|
|
890
|
+
</td>
|
|
891
|
+
<td class="name">
|
|
892
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/229384-grindhouse-auto-zabijak/" class="film-title-name">Grindhouse: Auto zabiják</a> <span class="film-title-info"></span></h3> </td>
|
|
893
|
+
</tr>
|
|
894
|
+
<tr>
|
|
895
|
+
<td class="year">
|
|
896
|
+
2005
|
|
897
|
+
</td>
|
|
898
|
+
<td class="name">
|
|
899
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/178904-sin-city-mesto-hrichu/" class="film-title-name">Sin City - město hříchu</a> <span class="film-title-info"></span></h3> </td>
|
|
900
|
+
</tr>
|
|
901
|
+
<tr>
|
|
902
|
+
<td class="year">
|
|
903
|
+
2004
|
|
904
|
+
</td>
|
|
905
|
+
<td class="name">
|
|
906
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/136304-kill-bill-2/" class="film-title-name">Kill Bill 2</a> <span class="film-title-info"></span></h3> </td>
|
|
907
|
+
</tr>
|
|
908
|
+
<tr class="tr-add-border">
|
|
909
|
+
<td class="year">
|
|
910
|
+
2003
|
|
911
|
+
</td>
|
|
912
|
+
<td class="name">
|
|
913
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/43483-kill-bill/" class="film-title-name">Kill Bill</a> <span class="film-title-info"></span></h3> </td>
|
|
914
|
+
</tr>
|
|
915
|
+
<tr class="tr-banner-desktop">
|
|
916
|
+
<td class="box box-banner" colspan="2">
|
|
917
|
+
<p class="box-banner-text-center">Reklama</p>
|
|
918
|
+
<div class="box-banner-336max">
|
|
919
|
+
<div id="large_rectangle_1" class="ad-pmg" style="height: 300px;"></div>
|
|
920
|
+
</div>
|
|
921
|
+
</td>
|
|
922
|
+
</tr>
|
|
923
|
+
<tr class="tr-banner-mobile">
|
|
924
|
+
<td class="box box-banner-mobile" colspan="2">
|
|
925
|
+
<p class="box-banner-text">Reklama</p>
|
|
926
|
+
<div id="mobile_square_2" class="ad-pmg" style="height: 300px;"></div>
|
|
927
|
+
</td>
|
|
928
|
+
</tr>
|
|
929
|
+
<tr>
|
|
930
|
+
<td class="year">
|
|
931
|
+
1997
|
|
932
|
+
</td>
|
|
933
|
+
<td class="name">
|
|
934
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/8850-jackie-brown/" class="film-title-name">Jackie Brown</a> <span class="film-title-info"></span></h3> </td>
|
|
935
|
+
</tr>
|
|
936
|
+
<tr>
|
|
937
|
+
<td class="year">
|
|
938
|
+
1995
|
|
939
|
+
</td>
|
|
940
|
+
<td class="name">
|
|
941
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/7743-ctyri-pokoje/" class="film-title-name">Čtyři pokoje</a> <span class="film-title-info"></span></h3> </td>
|
|
942
|
+
</tr>
|
|
943
|
+
<tr>
|
|
944
|
+
<td class="year">
|
|
945
|
+
1994
|
|
946
|
+
</td>
|
|
947
|
+
<td class="name">
|
|
948
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/8852-pulp-fiction-historky-z-podsveti/" class="film-title-name">Pulp Fiction: Historky z podsvětí</a> <span class="film-title-info"></span></h3> </td>
|
|
949
|
+
</tr>
|
|
950
|
+
<tr>
|
|
951
|
+
<td class="year">
|
|
952
|
+
1992
|
|
953
|
+
</td>
|
|
954
|
+
<td class="name">
|
|
955
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/8853-gauneri/" class="film-title-name">Gauneři</a> <span class="film-title-info"></span></h3> </td>
|
|
956
|
+
</tr>
|
|
957
|
+
<tr>
|
|
958
|
+
<td class="year">
|
|
959
|
+
1987
|
|
960
|
+
</td>
|
|
961
|
+
<td class="name">
|
|
962
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/117078-my-best-friend-s-birthday/" class="film-title-name">My Best Friend's Birthday</a> <span class="film-title-info"></span></h3> </td>
|
|
963
|
+
</tr>
|
|
964
|
+
<tr>
|
|
965
|
+
<td class="year">
|
|
966
|
+
1983
|
|
967
|
+
</td>
|
|
968
|
+
<td class="name">
|
|
969
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/301498-love-birds-in-bondage/" class="film-title-name">Love Birds in Bondage</a> <span class="film-title-info"></span></h3> </td>
|
|
970
|
+
</tr>
|
|
971
|
+
</tbody>
|
|
972
|
+
</table>
|
|
973
|
+
<table class="no-column-borders">
|
|
974
|
+
<tbody>
|
|
975
|
+
<tr>
|
|
976
|
+
<th colspan="2">Seriály</th>
|
|
977
|
+
</tr>
|
|
978
|
+
<tr>
|
|
979
|
+
<td class="year">
|
|
980
|
+
2005
|
|
981
|
+
</td>
|
|
982
|
+
<td class="name">
|
|
983
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/69540-kriminalka-las-vegas/" class="film-title-name">Kriminálka Las Vegas</a> <span class="film-title-info"></span></h3> </td>
|
|
984
|
+
</tr>
|
|
985
|
+
<tbody id="snippet-careerBox-2-episodes-69540-2005" data-ajax-append>
|
|
986
|
+
<tr>
|
|
987
|
+
<td class="year"> </td>
|
|
988
|
+
<td class="episode">
|
|
989
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/69540-kriminalka-las-vegas/543094-obema-nohama-v-hrobe-ii/" class="film-title-name">Oběma nohama v hrobě II.</a> <span class="film-title-info"> <span class="info">(S05E25)</span></span></h3> </td>
|
|
990
|
+
</tr>
|
|
991
|
+
<tr>
|
|
992
|
+
<td class="year"> </td>
|
|
993
|
+
<td class="episode">
|
|
994
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/69540-kriminalka-las-vegas/543093-obema-nohama-v-hrobe-i/" class="film-title-name">Oběma nohama v hrobě I.</a> <span class="film-title-info"> <span class="info">(S05E24)</span></span></h3> </td>
|
|
995
|
+
</tr>
|
|
996
|
+
</tbody>
|
|
997
|
+
|
|
998
|
+
<tbody id="snippet-careerBox-2-next-69540-2005">
|
|
999
|
+
</tbody>
|
|
1000
|
+
<tr>
|
|
1001
|
+
<td class="year">
|
|
1002
|
+
1995
|
|
1003
|
+
</td>
|
|
1004
|
+
<td class="name">
|
|
1005
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/69276-pohotovost/" class="film-title-name">Pohotovost</a> <span class="film-title-info"></span></h3> </td>
|
|
1006
|
+
</tr>
|
|
1007
|
+
<tbody id="snippet-careerBox-2-episodes-69276-1995" data-ajax-append>
|
|
1008
|
+
<tr>
|
|
1009
|
+
<td class="year"> </td>
|
|
1010
|
+
<td class="episode">
|
|
1011
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/69276-pohotovost/536646-materstvi/" class="film-title-name">Mateřství</a> <span class="film-title-info"> <span class="info">(S01E24)</span></span></h3> </td>
|
|
1012
|
+
</tr>
|
|
1013
|
+
</tbody>
|
|
1014
|
+
|
|
1015
|
+
<tbody id="snippet-careerBox-2-next-69276-1995">
|
|
1016
|
+
</tbody>
|
|
1017
|
+
</tbody>
|
|
1018
|
+
</table>
|
|
1019
|
+
<table class="no-column-borders">
|
|
1020
|
+
<tbody>
|
|
1021
|
+
<tr>
|
|
1022
|
+
<th colspan="2">Krátkometrážní</th>
|
|
1023
|
+
</tr>
|
|
1024
|
+
<tr>
|
|
1025
|
+
<td class="year">
|
|
1026
|
+
1992
|
|
1027
|
+
</td>
|
|
1028
|
+
<td class="name">
|
|
1029
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/1052345-reservoir-dogs-deleted-scenes/" class="film-title-name">Reservoir Dogs: Deleted Scenes</a> <span class="film-title-info"></span></h3> </td>
|
|
1030
|
+
</tr>
|
|
1031
|
+
<tr>
|
|
1032
|
+
<td class="year">
|
|
1033
|
+
1991
|
|
1034
|
+
</td>
|
|
1035
|
+
<td class="name">
|
|
1036
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/1051715-reservoir-dogs-sundance-institute-1991-june-film-lab/" class="film-title-name">Reservoir Dogs: Sundance Institute 1991 June Film Lab</a> <span class="film-title-info"></span></h3> </td>
|
|
1037
|
+
</tr>
|
|
1038
|
+
</tbody>
|
|
1039
|
+
</table>
|
|
1040
|
+
</div>
|
|
1041
|
+
</section>
|
|
1042
|
+
<section class="box">
|
|
1043
|
+
<header class="box-header">
|
|
1044
|
+
<h2>Scenárista</h2>
|
|
1045
|
+
<div class="box-header-action">
|
|
1046
|
+
<form action="" method="get" data-form="get">
|
|
1047
|
+
<select name="sort" data-auto-submit-form="true" data-empty-value="year" id="frm-sort-careerBox-4-sort-sort"><option value="year">seřadit od nejnovějšího</option><option value="sort_average">seřadit od nejlepšího</option><option value="rating_count">seřadit podle počtu hodnocení</option></select>
|
|
1048
|
+
</form>
|
|
1049
|
+
</div>
|
|
1050
|
+
</header>
|
|
1051
|
+
<div class="box-content">
|
|
1052
|
+
<table class="no-column-borders">
|
|
1053
|
+
<tbody>
|
|
1054
|
+
<tr>
|
|
1055
|
+
<th colspan="2">Filmy</th>
|
|
1056
|
+
</tr>
|
|
1057
|
+
<tr>
|
|
1058
|
+
<td class="year">
|
|
1059
|
+
2025
|
|
1060
|
+
</td>
|
|
1061
|
+
<td class="name">
|
|
1062
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1328972-the-movie-critic/" class="film-title-name">The Movie Critic</a> <span class="film-title-info"></span></h3> </td>
|
|
1063
|
+
</tr>
|
|
1064
|
+
<tr>
|
|
1065
|
+
<td class="year">
|
|
1066
|
+
2019
|
|
1067
|
+
</td>
|
|
1068
|
+
<td class="name">
|
|
1069
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/527699-tenkrat-v-hollywoodu/" class="film-title-name">Tenkrát v Hollywoodu</a> <span class="film-title-info"></span></h3> </td>
|
|
1070
|
+
</tr>
|
|
1071
|
+
<tr>
|
|
1072
|
+
<td class="year">
|
|
1073
|
+
2015
|
|
1074
|
+
</td>
|
|
1075
|
+
<td class="name">
|
|
1076
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/362228-osm-hroznych/" class="film-title-name">Osm hrozných</a> <span class="film-title-info"></span></h3> </td>
|
|
1077
|
+
</tr>
|
|
1078
|
+
<tr>
|
|
1079
|
+
<td class="year">
|
|
1080
|
+
2012
|
|
1081
|
+
</td>
|
|
1082
|
+
<td class="name">
|
|
1083
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/294824-nespoutany-django/" class="film-title-name">Nespoutaný Django</a> <span class="film-title-info"></span></h3> </td>
|
|
1084
|
+
</tr>
|
|
1085
|
+
<tr>
|
|
1086
|
+
<td class="year">
|
|
1087
|
+
2009
|
|
1088
|
+
</td>
|
|
1089
|
+
<td class="name">
|
|
1090
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/117077-hanebny-pancharti/" class="film-title-name">Hanebný pancharti</a> <span class="film-title-info"></span></h3> </td>
|
|
1091
|
+
</tr>
|
|
1092
|
+
<tr>
|
|
1093
|
+
<td class="year">
|
|
1094
|
+
2007
|
|
1095
|
+
</td>
|
|
1096
|
+
<td class="name">
|
|
1097
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/229384-grindhouse-auto-zabijak/" class="film-title-name">Grindhouse: Auto zabiják</a> <span class="film-title-info"></span></h3> </td>
|
|
1098
|
+
</tr>
|
|
1099
|
+
<tr>
|
|
1100
|
+
<td class="year">
|
|
1101
|
+
2004
|
|
1102
|
+
</td>
|
|
1103
|
+
<td class="name">
|
|
1104
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/136304-kill-bill-2/" class="film-title-name">Kill Bill 2</a> <span class="film-title-info"></span></h3> </td>
|
|
1105
|
+
</tr>
|
|
1106
|
+
<tr>
|
|
1107
|
+
<td class="year">
|
|
1108
|
+
2003
|
|
1109
|
+
</td>
|
|
1110
|
+
<td class="name">
|
|
1111
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/43483-kill-bill/" class="film-title-name">Kill Bill</a> <span class="film-title-info"></span></h3> </td>
|
|
1112
|
+
</tr>
|
|
1113
|
+
<tr class="tr-add-border">
|
|
1114
|
+
<td class="year">
|
|
1115
|
+
1997
|
|
1116
|
+
</td>
|
|
1117
|
+
<td class="name">
|
|
1118
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/8850-jackie-brown/" class="film-title-name">Jackie Brown</a> <span class="film-title-info"></span></h3> </td>
|
|
1119
|
+
</tr>
|
|
1120
|
+
<tr class="tr-banner-desktop">
|
|
1121
|
+
<td class="box box-banner" colspan="2">
|
|
1122
|
+
<p class="box-banner-text-center">Reklama</p>
|
|
1123
|
+
<div class="box-banner-336max">
|
|
1124
|
+
<div id="large_rectangle_2" class="ad-pmg" style="height: 300px;"></div>
|
|
1125
|
+
</div>
|
|
1126
|
+
</td>
|
|
1127
|
+
</tr>
|
|
1128
|
+
<tr class="tr-banner-mobile">
|
|
1129
|
+
<td class="box box-banner-mobile" colspan="2">
|
|
1130
|
+
<p class="box-banner-text">Reklama</p>
|
|
1131
|
+
<div id="mobile_square_3" class="ad-pmg" style="height: 300px;"></div>
|
|
1132
|
+
</td>
|
|
1133
|
+
</tr>
|
|
1134
|
+
<tr>
|
|
1135
|
+
<td class="year">
|
|
1136
|
+
1996
|
|
1137
|
+
</td>
|
|
1138
|
+
<td class="name">
|
|
1139
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/7744-od-soumraku-do-usvitu/" class="film-title-name">Od soumraku do úsvitu</a> <span class="film-title-info"></span></h3> </td>
|
|
1140
|
+
</tr>
|
|
1141
|
+
<tr>
|
|
1142
|
+
<td class="year">
|
|
1143
|
+
1995
|
|
1144
|
+
</td>
|
|
1145
|
+
<td class="name">
|
|
1146
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/7743-ctyri-pokoje/" class="film-title-name">Čtyři pokoje</a> <span class="film-title-info"></span></h3> </td>
|
|
1147
|
+
</tr>
|
|
1148
|
+
<tr>
|
|
1149
|
+
<td class="year">
|
|
1150
|
+
1994
|
|
1151
|
+
</td>
|
|
1152
|
+
<td class="name">
|
|
1153
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/8852-pulp-fiction-historky-z-podsveti/" class="film-title-name">Pulp Fiction: Historky z podsvětí</a> <span class="film-title-info"></span></h3> </td>
|
|
1154
|
+
</tr>
|
|
1155
|
+
<tr>
|
|
1156
|
+
<td class="year">
|
|
1157
|
+
1993
|
|
1158
|
+
</td>
|
|
1159
|
+
<td class="name">
|
|
1160
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/8289-pravdiva-romance/" class="film-title-name">Pravdivá romance</a> <span class="film-title-info"></span></h3> </td>
|
|
1161
|
+
</tr>
|
|
1162
|
+
<tr>
|
|
1163
|
+
<td class="year">
|
|
1164
|
+
1992
|
|
1165
|
+
</td>
|
|
1166
|
+
<td class="name">
|
|
1167
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/8853-gauneri/" class="film-title-name">Gauneři</a> <span class="film-title-info"></span></h3> </td>
|
|
1168
|
+
</tr>
|
|
1169
|
+
<tr>
|
|
1170
|
+
<td class="year">
|
|
1171
|
+
1987
|
|
1172
|
+
</td>
|
|
1173
|
+
<td class="name">
|
|
1174
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/117078-my-best-friend-s-birthday/" class="film-title-name">My Best Friend's Birthday</a> <span class="film-title-info"></span></h3> </td>
|
|
1175
|
+
</tr>
|
|
1176
|
+
<tr>
|
|
1177
|
+
<td class="year">
|
|
1178
|
+
1983
|
|
1179
|
+
</td>
|
|
1180
|
+
<td class="name">
|
|
1181
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/301498-love-birds-in-bondage/" class="film-title-name">Love Birds in Bondage</a> <span class="film-title-info"></span></h3> </td>
|
|
1182
|
+
</tr>
|
|
1183
|
+
</tbody>
|
|
1184
|
+
</table>
|
|
1185
|
+
<table class="no-column-borders">
|
|
1186
|
+
<tbody>
|
|
1187
|
+
<tr>
|
|
1188
|
+
<th colspan="2">Seriály</th>
|
|
1189
|
+
</tr>
|
|
1190
|
+
<tr>
|
|
1191
|
+
<td class="year">
|
|
1192
|
+
2023
|
|
1193
|
+
</td>
|
|
1194
|
+
<td class="name">
|
|
1195
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1031794-bounty-law/" class="film-title-name">Bounty Law</a> <span class="film-title-info"></span></h3> </td>
|
|
1196
|
+
</tr>
|
|
1197
|
+
</tbody>
|
|
1198
|
+
</table>
|
|
1199
|
+
<table class="no-column-borders">
|
|
1200
|
+
<tbody>
|
|
1201
|
+
<tr>
|
|
1202
|
+
<th colspan="2">Krátkometrážní</th>
|
|
1203
|
+
</tr>
|
|
1204
|
+
<tr>
|
|
1205
|
+
<td class="year">
|
|
1206
|
+
1995
|
|
1207
|
+
</td>
|
|
1208
|
+
<td class="name">
|
|
1209
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/240544-dance-me-to-the-end-of-love/" class="film-title-name">Dance Me to the End of Love</a> <span class="film-title-info"></span></h3> </td>
|
|
1210
|
+
</tr>
|
|
1211
|
+
<tr>
|
|
1212
|
+
<td class="year">
|
|
1213
|
+
1992
|
|
1214
|
+
</td>
|
|
1215
|
+
<td class="name">
|
|
1216
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/1052345-reservoir-dogs-deleted-scenes/" class="film-title-name">Reservoir Dogs: Deleted Scenes</a> <span class="film-title-info"></span></h3> </td>
|
|
1217
|
+
</tr>
|
|
1218
|
+
<tr>
|
|
1219
|
+
<td class="year">
|
|
1220
|
+
1991
|
|
1221
|
+
</td>
|
|
1222
|
+
<td class="name">
|
|
1223
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/1051715-reservoir-dogs-sundance-institute-1991-june-film-lab/" class="film-title-name">Reservoir Dogs: Sundance Institute 1991 June Film Lab</a> <span class="film-title-info"></span></h3> </td>
|
|
1224
|
+
</tr>
|
|
1225
|
+
</tbody>
|
|
1226
|
+
</table>
|
|
1227
|
+
</div>
|
|
1228
|
+
</section>
|
|
1229
|
+
<section class="box">
|
|
1230
|
+
<header class="box-header">
|
|
1231
|
+
<h2>Herec</h2>
|
|
1232
|
+
<div class="box-header-action">
|
|
1233
|
+
<form action="" method="get" data-form="get">
|
|
1234
|
+
<select name="sort" data-auto-submit-form="true" data-empty-value="year" id="frm-sort-careerBox-1-sort-sort"><option value="year">seřadit od nejnovějšího</option><option value="sort_average">seřadit od nejlepšího</option><option value="rating_count">seřadit podle počtu hodnocení</option></select>
|
|
1235
|
+
</form>
|
|
1236
|
+
</div>
|
|
1237
|
+
</header>
|
|
1238
|
+
<div class="box-content">
|
|
1239
|
+
<table class="no-column-borders">
|
|
1240
|
+
<tbody>
|
|
1241
|
+
<tr>
|
|
1242
|
+
<th colspan="2">Filmy</th>
|
|
1243
|
+
</tr>
|
|
1244
|
+
<tr>
|
|
1245
|
+
<td class="year">
|
|
1246
|
+
2019
|
|
1247
|
+
</td>
|
|
1248
|
+
<td class="name">
|
|
1249
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/527699-tenkrat-v-hollywoodu/" class="film-title-name">Tenkrát v Hollywoodu</a> <span class="film-title-info"></span></h3> </td>
|
|
1250
|
+
</tr>
|
|
1251
|
+
<tr>
|
|
1252
|
+
<td class="year">
|
|
1253
|
+
2015
|
|
1254
|
+
</td>
|
|
1255
|
+
<td class="name">
|
|
1256
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/362228-osm-hroznych/" class="film-title-name">Osm hrozných</a> <span class="film-title-info"> - vypravěč</span></h3> </td>
|
|
1257
|
+
</tr>
|
|
1258
|
+
<tr>
|
|
1259
|
+
<td class="year">
|
|
1260
|
+
2014
|
|
1261
|
+
</td>
|
|
1262
|
+
<td class="name">
|
|
1263
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/321529-je-proste-bajecna/" class="film-title-name">Je prostě báječná</a> <span class="film-title-info"></span></h3> </td>
|
|
1264
|
+
</tr>
|
|
1265
|
+
<tr>
|
|
1266
|
+
<td class="year">
|
|
1267
|
+
2012
|
|
1268
|
+
</td>
|
|
1269
|
+
<td class="name">
|
|
1270
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/294824-nespoutany-django/" class="film-title-name">Nespoutaný Django</a> <span class="film-title-info"></span></h3> </td>
|
|
1271
|
+
</tr>
|
|
1272
|
+
<tr>
|
|
1273
|
+
<td class="year">
|
|
1274
|
+
2009
|
|
1275
|
+
</td>
|
|
1276
|
+
<td class="name">
|
|
1277
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/117077-hanebny-pancharti/" class="film-title-name">Hanebný pancharti</a> <span class="film-title-info"></span></h3> </td>
|
|
1278
|
+
</tr>
|
|
1279
|
+
<tr>
|
|
1280
|
+
<td class="year">
|
|
1281
|
+
2007
|
|
1282
|
+
</td>
|
|
1283
|
+
<td class="name">
|
|
1284
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/226028-denik-mrtvych/" class="film-title-name">Deník mrtvých</a> <span class="film-title-info"></span></h3> </td>
|
|
1285
|
+
</tr>
|
|
1286
|
+
<tr>
|
|
1287
|
+
<td class="year">
|
|
1288
|
+
|
|
1289
|
+
</td>
|
|
1290
|
+
<td class="name">
|
|
1291
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/229384-grindhouse-auto-zabijak/" class="film-title-name">Grindhouse: Auto zabiják</a> <span class="film-title-info"></span></h3> </td>
|
|
1292
|
+
</tr>
|
|
1293
|
+
<tr>
|
|
1294
|
+
<td class="year">
|
|
1295
|
+
|
|
1296
|
+
</td>
|
|
1297
|
+
<td class="name">
|
|
1298
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/221616-grindhouse-planeta-teror/" class="film-title-name">Grindhouse: Planeta Teror</a> <span class="film-title-info"></span></h3> </td>
|
|
1299
|
+
</tr>
|
|
1300
|
+
<tr class="tr-add-border">
|
|
1301
|
+
<td class="year">
|
|
1302
|
+
|
|
1303
|
+
</td>
|
|
1304
|
+
<td class="name">
|
|
1305
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/229980-nemilosrdny-strelec/" class="film-title-name">Nemilosrdný střelec</a> <span class="film-title-info"></span></h3> </td>
|
|
1306
|
+
</tr>
|
|
1307
|
+
<tr class="tr-banner-desktop">
|
|
1308
|
+
<td class="box box-banner" colspan="2">
|
|
1309
|
+
<p class="box-banner-text-center">Reklama</p>
|
|
1310
|
+
<div class="box-banner-336max">
|
|
1311
|
+
<div id="large_rectangle_3" class="ad-pmg" style="height: 300px;"></div>
|
|
1312
|
+
</div>
|
|
1313
|
+
</td>
|
|
1314
|
+
</tr>
|
|
1315
|
+
<tr class="tr-banner-mobile">
|
|
1316
|
+
<td class="box box-banner-mobile" colspan="2">
|
|
1317
|
+
<p class="box-banner-text">Reklama</p>
|
|
1318
|
+
<div id="mobile_square_4" class="ad-pmg" style="height: 300px;"></div>
|
|
1319
|
+
</td>
|
|
1320
|
+
</tr>
|
|
1321
|
+
<tr>
|
|
1322
|
+
<td class="year">
|
|
1323
|
+
2005
|
|
1324
|
+
</td>
|
|
1325
|
+
<td class="name">
|
|
1326
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/183558-the-muppets-wizard-of-oz/" class="film-title-name">The Muppets' Wizard of Oz</a> <span class="film-title-info"> <span class="info">(TV film)</span></span></h3> </td>
|
|
1327
|
+
</tr>
|
|
1328
|
+
<tr>
|
|
1329
|
+
<td class="year">
|
|
1330
|
+
2004
|
|
1331
|
+
</td>
|
|
1332
|
+
<td class="name">
|
|
1333
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/136304-kill-bill-2/" class="film-title-name">Kill Bill 2</a> <span class="film-title-info"></span></h3> </td>
|
|
1334
|
+
</tr>
|
|
1335
|
+
<tr>
|
|
1336
|
+
<td class="year">
|
|
1337
|
+
|
|
1338
|
+
</td>
|
|
1339
|
+
<td class="name">
|
|
1340
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/44485-planet-of-the-pitts/" class="film-title-name">Planet of the Pitts</a> <span class="film-title-info"></span></h3> </td>
|
|
1341
|
+
</tr>
|
|
1342
|
+
<tr>
|
|
1343
|
+
<td class="year">
|
|
1344
|
+
2003
|
|
1345
|
+
</td>
|
|
1346
|
+
<td class="name">
|
|
1347
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/43483-kill-bill/" class="film-title-name">Kill Bill</a> <span class="film-title-info"></span></h3> </td>
|
|
1348
|
+
</tr>
|
|
1349
|
+
<tr>
|
|
1350
|
+
<td class="year">
|
|
1351
|
+
2000
|
|
1352
|
+
</td>
|
|
1353
|
+
<td class="name">
|
|
1354
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/13933-maly-nicky-satan-junior/" class="film-title-name">Malý Nicky - Satan Junior</a> <span class="film-title-info"></span></h3> </td>
|
|
1355
|
+
</tr>
|
|
1356
|
+
<tr>
|
|
1357
|
+
<td class="year">
|
|
1358
|
+
1998
|
|
1359
|
+
</td>
|
|
1360
|
+
<td class="name">
|
|
1361
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/34703-god-said-ha/" class="film-title-name">God Said, 'Ha!'</a> <span class="film-title-info"></span></h3> </td>
|
|
1362
|
+
</tr>
|
|
1363
|
+
<tr>
|
|
1364
|
+
<td class="year">
|
|
1365
|
+
1997
|
|
1366
|
+
</td>
|
|
1367
|
+
<td class="name">
|
|
1368
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/8850-jackie-brown/" class="film-title-name">Jackie Brown</a> <span class="film-title-info"></span></h3> </td>
|
|
1369
|
+
</tr>
|
|
1370
|
+
<tr>
|
|
1371
|
+
<td class="year">
|
|
1372
|
+
1996
|
|
1373
|
+
</td>
|
|
1374
|
+
<td class="name">
|
|
1375
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/10527-krvava-romance/" class="film-title-name">Krvavá romance</a> <span class="film-title-info"></span></h3> </td>
|
|
1376
|
+
</tr>
|
|
1377
|
+
<tr>
|
|
1378
|
+
<td class="year">
|
|
1379
|
+
|
|
1380
|
+
</td>
|
|
1381
|
+
<td class="name">
|
|
1382
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/7744-od-soumraku-do-usvitu/" class="film-title-name">Od soumraku do úsvitu</a> <span class="film-title-info"></span></h3> </td>
|
|
1383
|
+
</tr>
|
|
1384
|
+
<tr>
|
|
1385
|
+
<td class="year">
|
|
1386
|
+
|
|
1387
|
+
</td>
|
|
1388
|
+
<td class="name">
|
|
1389
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/5802-sex-po-telefonu/" class="film-title-name">Sex po telefonu</a> <span class="film-title-info"></span></h3> </td>
|
|
1390
|
+
</tr>
|
|
1391
|
+
<tr>
|
|
1392
|
+
<td class="year">
|
|
1393
|
+
1995
|
|
1394
|
+
</td>
|
|
1395
|
+
<td class="name">
|
|
1396
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/7741-desperado/" class="film-title-name">Desperado</a> <span class="film-title-info"></span></h3> </td>
|
|
1397
|
+
</tr>
|
|
1398
|
+
<tr>
|
|
1399
|
+
<td class="year">
|
|
1400
|
+
|
|
1401
|
+
</td>
|
|
1402
|
+
<td class="name">
|
|
1403
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/22755-johnny-zapina-radio/" class="film-title-name">Johnny zapíná rádio</a> <span class="film-title-info"></span></h3> </td>
|
|
1404
|
+
</tr>
|
|
1405
|
+
<tr>
|
|
1406
|
+
<td class="year">
|
|
1407
|
+
|
|
1408
|
+
</td>
|
|
1409
|
+
<td class="name">
|
|
1410
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/7743-ctyri-pokoje/" class="film-title-name">Čtyři pokoje</a> <span class="film-title-info"></span></h3> </td>
|
|
1411
|
+
</tr>
|
|
1412
|
+
<tr>
|
|
1413
|
+
<td class="year">
|
|
1414
|
+
1994
|
|
1415
|
+
</td>
|
|
1416
|
+
<td class="name">
|
|
1417
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/8852-pulp-fiction-historky-z-podsveti/" class="film-title-name">Pulp Fiction: Historky z podsvětí</a> <span class="film-title-info"></span></h3> </td>
|
|
1418
|
+
</tr>
|
|
1419
|
+
<tr>
|
|
1420
|
+
<td class="year">
|
|
1421
|
+
|
|
1422
|
+
</td>
|
|
1423
|
+
<td class="name">
|
|
1424
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/11131-somebody-to-love/" class="film-title-name">Somebody to Love</a> <span class="film-title-info"></span></h3> </td>
|
|
1425
|
+
</tr>
|
|
1426
|
+
<tr>
|
|
1427
|
+
<td class="year">
|
|
1428
|
+
|
|
1429
|
+
</td>
|
|
1430
|
+
<td class="name">
|
|
1431
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/22753-vyspi-se-se-mnou/" class="film-title-name">Vyspi se se mnou</a> <span class="film-title-info"></span></h3> </td>
|
|
1432
|
+
</tr>
|
|
1433
|
+
<tr>
|
|
1434
|
+
<td class="year">
|
|
1435
|
+
1992
|
|
1436
|
+
</td>
|
|
1437
|
+
<td class="name">
|
|
1438
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/29644-eddie-presley/" class="film-title-name">Eddie Presley</a> <span class="film-title-info"></span></h3> </td>
|
|
1439
|
+
</tr>
|
|
1440
|
+
<tr>
|
|
1441
|
+
<td class="year">
|
|
1442
|
+
|
|
1443
|
+
</td>
|
|
1444
|
+
<td class="name">
|
|
1445
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/8853-gauneri/" class="film-title-name">Gauneři</a> <span class="film-title-info"></span></h3> </td>
|
|
1446
|
+
</tr>
|
|
1447
|
+
<tr>
|
|
1448
|
+
<td class="year">
|
|
1449
|
+
1989
|
|
1450
|
+
</td>
|
|
1451
|
+
<td class="name">
|
|
1452
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/179086-vegetables/" class="film-title-name">Vegetables</a> <span class="film-title-info"></span></h3> </td>
|
|
1453
|
+
</tr>
|
|
1454
|
+
<tr>
|
|
1455
|
+
<td class="year">
|
|
1456
|
+
1987
|
|
1457
|
+
</td>
|
|
1458
|
+
<td class="name">
|
|
1459
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/117078-my-best-friend-s-birthday/" class="film-title-name">My Best Friend's Birthday</a> <span class="film-title-info"></span></h3> </td>
|
|
1460
|
+
</tr>
|
|
1461
|
+
<tr>
|
|
1462
|
+
<td class="year">
|
|
1463
|
+
1983
|
|
1464
|
+
</td>
|
|
1465
|
+
<td class="name">
|
|
1466
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/301498-love-birds-in-bondage/" class="film-title-name">Love Birds in Bondage</a> <span class="film-title-info"></span></h3> </td>
|
|
1467
|
+
</tr>
|
|
1468
|
+
</tbody>
|
|
1469
|
+
</table>
|
|
1470
|
+
<table class="no-column-borders">
|
|
1471
|
+
<tbody>
|
|
1472
|
+
<tr>
|
|
1473
|
+
<th colspan="2">Seriály</th>
|
|
1474
|
+
</tr>
|
|
1475
|
+
<tr>
|
|
1476
|
+
<td class="year">
|
|
1477
|
+
2022
|
|
1478
|
+
</td>
|
|
1479
|
+
<td class="name">
|
|
1480
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/1110295-super-pumped-valka-o-uber/" class="film-title-name">Super Pumped: Válka o Uber</a> <span class="film-title-info"></span></h3> </td>
|
|
1481
|
+
</tr>
|
|
1482
|
+
<tbody id="snippet-careerBox-1-episodes-1110295-2022" data-ajax-append>
|
|
1483
|
+
<tr>
|
|
1484
|
+
<td class="year"> </td>
|
|
1485
|
+
<td class="episode">
|
|
1486
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/1110295-super-pumped-valka-o-uber/1110298-x-do-x/" class="film-title-name">X do X</a> <span class="film-title-info"> <span class="info">(E02)</span></span></h3> </td>
|
|
1487
|
+
</tr>
|
|
1488
|
+
<tr>
|
|
1489
|
+
<td class="year"> </td>
|
|
1490
|
+
<td class="episode">
|
|
1491
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/1110295-super-pumped-valka-o-uber/1110297-rust-nebo-zemrit/" class="film-title-name">Růst nebo zemřít</a> <span class="film-title-info"> <span class="info">(E01)</span></span></h3> </td>
|
|
1492
|
+
</tr>
|
|
1493
|
+
</tbody>
|
|
1494
|
+
|
|
1495
|
+
<tbody id="snippet-careerBox-1-next-1110295-2022">
|
|
1496
|
+
</tbody>
|
|
1497
|
+
<tr>
|
|
1498
|
+
<td class="year">
|
|
1499
|
+
2005
|
|
1500
|
+
</td>
|
|
1501
|
+
<td class="name">
|
|
1502
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/189822-kacer-dodgers/" class="film-title-name">Kačer Dodgers</a> <span class="film-title-info"></span></h3> </td>
|
|
1503
|
+
</tr>
|
|
1504
|
+
<tbody id="snippet-careerBox-1-episodes-189822-2005" data-ajax-append>
|
|
1505
|
+
<tr>
|
|
1506
|
+
<td class="year"> </td>
|
|
1507
|
+
<td class="episode">
|
|
1508
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/189822-kacer-dodgers/1479223-mistr-moloch-zvykackova-loupez/" class="film-title-name">Mistr moloch / Žvýkačková loupež</a> <span class="film-title-info"> <span class="info">(S03E11)</span></span></h3> </td>
|
|
1509
|
+
</tr>
|
|
1510
|
+
</tbody>
|
|
1511
|
+
|
|
1512
|
+
<tbody id="snippet-careerBox-1-next-189822-2005">
|
|
1513
|
+
</tbody>
|
|
1514
|
+
<tr>
|
|
1515
|
+
<td class="year">
|
|
1516
|
+
2004
|
|
1517
|
+
</td>
|
|
1518
|
+
<td class="name">
|
|
1519
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/70285-alias/" class="film-title-name">Alias</a> <span class="film-title-info"></span></h3> </td>
|
|
1520
|
+
</tr>
|
|
1521
|
+
<tbody id="snippet-careerBox-1-episodes-70285-2004" data-ajax-append>
|
|
1522
|
+
<tr>
|
|
1523
|
+
<td class="year"> </td>
|
|
1524
|
+
<td class="episode">
|
|
1525
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/70285-alias/540705-po-seste/" class="film-title-name">Po šesté</a> <span class="film-title-info"> <span class="info">(S03E13)</span></span></h3> </td>
|
|
1526
|
+
</tr>
|
|
1527
|
+
<tr>
|
|
1528
|
+
<td class="year"> </td>
|
|
1529
|
+
<td class="episode">
|
|
1530
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/70285-alias/540703-odhaleni/" class="film-title-name">Odhalení</a> <span class="film-title-info"> <span class="info">(S03E11)</span></span></h3> </td>
|
|
1531
|
+
</tr>
|
|
1532
|
+
</tbody>
|
|
1533
|
+
|
|
1534
|
+
<tbody id="snippet-careerBox-1-next-70285-2004">
|
|
1535
|
+
</tbody>
|
|
1536
|
+
<tr>
|
|
1537
|
+
<td class="year">
|
|
1538
|
+
2002
|
|
1539
|
+
</td>
|
|
1540
|
+
<td class="name">
|
|
1541
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/70285-alias/" class="film-title-name">Alias</a> <span class="film-title-info"></span></h3> </td>
|
|
1542
|
+
</tr>
|
|
1543
|
+
<tbody id="snippet-careerBox-1-episodes-70285-2002" data-ajax-append>
|
|
1544
|
+
<tr>
|
|
1545
|
+
<td class="year"> </td>
|
|
1546
|
+
<td class="episode">
|
|
1547
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/70285-alias/540659-pouzdro-2-cast/" class="film-title-name">Pouzdro - 2. část</a> <span class="film-title-info"> <span class="info">(S01E13)</span></span></h3> </td>
|
|
1548
|
+
</tr>
|
|
1549
|
+
<tr>
|
|
1550
|
+
<td class="year"> </td>
|
|
1551
|
+
<td class="episode">
|
|
1552
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/70285-alias/540658-pouzdro-1-cast/" class="film-title-name">Pouzdro - 1. část</a> <span class="film-title-info"> <span class="info">(S01E12)</span></span></h3> </td>
|
|
1553
|
+
</tr>
|
|
1554
|
+
</tbody>
|
|
1555
|
+
|
|
1556
|
+
<tbody id="snippet-careerBox-1-next-70285-2002">
|
|
1557
|
+
</tbody>
|
|
1558
|
+
<tr>
|
|
1559
|
+
<td class="year">
|
|
1560
|
+
1994
|
|
1561
|
+
</td>
|
|
1562
|
+
<td class="name">
|
|
1563
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/75283-all-american-girl/" class="film-title-name">All-American Girl</a> <span class="film-title-info"></span></h3> </td>
|
|
1564
|
+
</tr>
|
|
1565
|
+
<tr>
|
|
1566
|
+
<td class="year">
|
|
1567
|
+
1990
|
|
1568
|
+
</td>
|
|
1569
|
+
<td class="name">
|
|
1570
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/69398-the-golden-girls/" class="film-title-name">The Golden Girls</a> <span class="film-title-info"> - <span title="archivní záběry">a.z.</span></span></h3> </td>
|
|
1571
|
+
</tr>
|
|
1572
|
+
<tbody id="snippet-careerBox-1-episodes-69398-1990" data-ajax-append>
|
|
1573
|
+
<tr>
|
|
1574
|
+
<td class="year"> </td>
|
|
1575
|
+
<td class="episode">
|
|
1576
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/69398-the-golden-girls/725371-prijizdi-prezident-2-cast/" class="film-title-name">Přijíždí prezident! – 2. část</a> <span class="film-title-info"> - <span title="archivní záběry">a.z.</span> <span class="info">(S05E26)</span></span></h3> </td>
|
|
1577
|
+
</tr>
|
|
1578
|
+
</tbody>
|
|
1579
|
+
|
|
1580
|
+
<tbody id="snippet-careerBox-1-next-69398-1990">
|
|
1581
|
+
</tbody>
|
|
1582
|
+
<tr>
|
|
1583
|
+
<td class="year">
|
|
1584
|
+
1988
|
|
1585
|
+
</td>
|
|
1586
|
+
<td class="name">
|
|
1587
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/69398-the-golden-girls/" class="film-title-name">The Golden Girls</a> <span class="film-title-info"></span></h3> </td>
|
|
1588
|
+
</tr>
|
|
1589
|
+
<tbody id="snippet-careerBox-1-episodes-69398-1988" data-ajax-append>
|
|
1590
|
+
<tr>
|
|
1591
|
+
<td class="year"> </td>
|
|
1592
|
+
<td class="episode">
|
|
1593
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/69398-the-golden-girls/725306-sophiina-svatba-1-cast/" class="film-title-name">Sophiina svatba, 1. část</a> <span class="film-title-info"> <span class="info">(S04E06)</span></span></h3> </td>
|
|
1594
|
+
</tr>
|
|
1595
|
+
</tbody>
|
|
1596
|
+
|
|
1597
|
+
<tbody id="snippet-careerBox-1-next-69398-1988">
|
|
1598
|
+
</tbody>
|
|
1599
|
+
</tbody>
|
|
1600
|
+
</table>
|
|
1601
|
+
<table class="no-column-borders">
|
|
1602
|
+
<tbody>
|
|
1603
|
+
<tr>
|
|
1604
|
+
<th colspan="2">Dokumentární</th>
|
|
1605
|
+
</tr>
|
|
1606
|
+
<tr>
|
|
1607
|
+
<td class="year">
|
|
1608
|
+
2024
|
|
1609
|
+
</td>
|
|
1610
|
+
<td class="name">
|
|
1611
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1546828-american-badass-a-michael-madsen-retrospective/" class="film-title-name">American Badass: A Michael Madsen Retrospective</a> <span class="film-title-info"></span></h3> </td>
|
|
1612
|
+
</tr>
|
|
1613
|
+
<tr>
|
|
1614
|
+
<td class="year">
|
|
1615
|
+
2023
|
|
1616
|
+
</td>
|
|
1617
|
+
<td class="name">
|
|
1618
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1386687-burt-reynolds-the-last-interview/" class="film-title-name">Burt Reynolds: The Last Interview</a> <span class="film-title-info"></span></h3> </td>
|
|
1619
|
+
</tr>
|
|
1620
|
+
<tr>
|
|
1621
|
+
<td class="year">
|
|
1622
|
+
|
|
1623
|
+
</td>
|
|
1624
|
+
<td class="name">
|
|
1625
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1372528-cannes-bez-obalu/" class="film-title-name">Cannes bez obalu</a> <span class="film-title-info"></span></h3> </td>
|
|
1626
|
+
</tr>
|
|
1627
|
+
<tr>
|
|
1628
|
+
<td class="year">
|
|
1629
|
+
|
|
1630
|
+
</td>
|
|
1631
|
+
<td class="name">
|
|
1632
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/1385432-sly/" class="film-title-name">Sly</a> <span class="film-title-info"></span></h3> </td>
|
|
1633
|
+
</tr>
|
|
1634
|
+
<tr>
|
|
1635
|
+
<td class="year">
|
|
1636
|
+
|
|
1637
|
+
</td>
|
|
1638
|
+
<td class="name">
|
|
1639
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1427677-the-moviemakers-tarantino/" class="film-title-name">The Moviemakers: Tarantino</a> <span class="film-title-info"> - <span title="archivní záběry">a.z.</span></span></h3> </td>
|
|
1640
|
+
</tr>
|
|
1641
|
+
<tr>
|
|
1642
|
+
<td class="year">
|
|
1643
|
+
2022
|
|
1644
|
+
</td>
|
|
1645
|
+
<td class="name">
|
|
1646
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/1228996-sergio-leone-ital-ktery-vynalezl-ameriku/" class="film-title-name">Sergio Leone: Ital, který vynalezl Ameriku</a> <span class="film-title-info"></span></h3> </td>
|
|
1647
|
+
</tr>
|
|
1648
|
+
<tr>
|
|
1649
|
+
<td class="year">
|
|
1650
|
+
2021
|
|
1651
|
+
</td>
|
|
1652
|
+
<td class="name">
|
|
1653
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/1055777-dark-side-of-the-90s/" class="film-title-name">Dark Side of the '90s</a> <span class="film-title-info"> <span class="info">(seriál)</span> - <span title="archivní záběry">a.z.</span></span></h3> </td>
|
|
1654
|
+
</tr>
|
|
1655
|
+
<tr>
|
|
1656
|
+
<td class="year">
|
|
1657
|
+
|
|
1658
|
+
</td>
|
|
1659
|
+
<td class="name">
|
|
1660
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/1078235-django-django/" class="film-title-name">Django & Django</a> <span class="film-title-info"></span></h3> </td>
|
|
1661
|
+
</tr>
|
|
1662
|
+
<tr>
|
|
1663
|
+
<td class="year">
|
|
1664
|
+
|
|
1665
|
+
</td>
|
|
1666
|
+
<td class="name">
|
|
1667
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/1052215-ennio/" class="film-title-name">Ennio</a> <span class="film-title-info"></span></h3> </td>
|
|
1668
|
+
</tr>
|
|
1669
|
+
<tr>
|
|
1670
|
+
<td class="year">
|
|
1671
|
+
|
|
1672
|
+
</td>
|
|
1673
|
+
<td class="name">
|
|
1674
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/662995-filmarske-legendy/" class="film-title-name">Filmařské legendy</a> <span class="film-title-info"> <span class="info">(seriál)</span> - <span title="archivní záběry">a.z.</span></span></h3> </td>
|
|
1675
|
+
</tr>
|
|
1676
|
+
<tbody id="snippet-careerBox-1-episodes-662995-2021" data-ajax-append>
|
|
1677
|
+
<tr>
|
|
1678
|
+
<td class="year"> </td>
|
|
1679
|
+
<td class="episode">
|
|
1680
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/662995-filmarske-legendy/1476279-quentin-tarantino/" class="film-title-name">Quentin Tarantino</a> <span class="film-title-info"> - <span title="archivní záběry">a.z.</span> <span class="info">(S06E06)</span></span></h3> </td>
|
|
1681
|
+
</tr>
|
|
1682
|
+
</tbody>
|
|
1683
|
+
|
|
1684
|
+
<tbody id="snippet-careerBox-1-next-662995-2021">
|
|
1685
|
+
</tbody>
|
|
1686
|
+
<tr>
|
|
1687
|
+
<td class="year">
|
|
1688
|
+
|
|
1689
|
+
</td>
|
|
1690
|
+
<td class="name">
|
|
1691
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/1029207-michael-cimino/" class="film-title-name">Michael Cimino</a> <span class="film-title-info"></span></h3> </td>
|
|
1692
|
+
</tr>
|
|
1693
|
+
<tr>
|
|
1694
|
+
<td class="year">
|
|
1695
|
+
2020
|
|
1696
|
+
</td>
|
|
1697
|
+
<td class="name">
|
|
1698
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/661760-eli-roth-historie-hororu/" class="film-title-name">Eli Roth: Historie hororu</a> <span class="film-title-info"> <span class="info">(seriál)</span></span></h3> </td>
|
|
1699
|
+
</tr>
|
|
1700
|
+
<tbody id="snippet-careerBox-1-episodes-661760-2020" data-ajax-append>
|
|
1701
|
+
<tr>
|
|
1702
|
+
<td class="year"> </td>
|
|
1703
|
+
<td class="episode">
|
|
1704
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/661760-eli-roth-historie-hororu/911661-monsters/" class="film-title-name">Monsters</a> <span class="film-title-info"> <span class="info">(S02E02)</span></span></h3> </td>
|
|
1705
|
+
</tr>
|
|
1706
|
+
</tbody>
|
|
1707
|
+
|
|
1708
|
+
<tbody id="snippet-careerBox-1-next-661760-2020">
|
|
1709
|
+
</tbody>
|
|
1710
|
+
<tr>
|
|
1711
|
+
<td class="year">
|
|
1712
|
+
|
|
1713
|
+
</td>
|
|
1714
|
+
<td class="name">
|
|
1715
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/830241-jay-sebring-cutting-to-the-truth/" class="film-title-name">Jay Sebring....Cutting to the Truth</a> <span class="film-title-info"></span></h3> </td>
|
|
1716
|
+
</tr>
|
|
1717
|
+
<tr>
|
|
1718
|
+
<td class="year">
|
|
1719
|
+
2019
|
|
1720
|
+
</td>
|
|
1721
|
+
<td class="name">
|
|
1722
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/903330-bob-richardson-for-the-love-of-the-film/" class="film-title-name">Bob Richardson: For the Love of the Film</a> <span class="film-title-info"></span></h3> </td>
|
|
1723
|
+
</tr>
|
|
1724
|
+
<tr>
|
|
1725
|
+
<td class="year">
|
|
1726
|
+
|
|
1727
|
+
</td>
|
|
1728
|
+
<td class="name">
|
|
1729
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/764695-life-as-a-b-movie-piero-vivarelli/" class="film-title-name">Life As a B-Movie: Piero Vivarelli</a> <span class="film-title-info"></span></h3> </td>
|
|
1730
|
+
</tr>
|
|
1731
|
+
<tr>
|
|
1732
|
+
<td class="year">
|
|
1733
|
+
|
|
1734
|
+
</td>
|
|
1735
|
+
<td class="name">
|
|
1736
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/777500-qt8-the-first-eight/" class="film-title-name">QT8: The First Eight</a> <span class="film-title-info"> - <span title="archivní záběry">a.z.</span></span></h3> </td>
|
|
1737
|
+
</tr>
|
|
1738
|
+
<tr>
|
|
1739
|
+
<td class="year">
|
|
1740
|
+
|
|
1741
|
+
</td>
|
|
1742
|
+
<td class="name">
|
|
1743
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/903332-quentin-tarantino-s-love-letter-to-hollywood/" class="film-title-name">Quentin Tarantino's Love Letter to Hollywood</a> <span class="film-title-info"></span></h3> </td>
|
|
1744
|
+
</tr>
|
|
1745
|
+
<tr>
|
|
1746
|
+
<td class="year">
|
|
1747
|
+
|
|
1748
|
+
</td>
|
|
1749
|
+
<td class="name">
|
|
1750
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/903335-restoring-hollywood-the-production-design/" class="film-title-name">Restoring Hollywood: The Production Design</a> <span class="film-title-info"></span></h3> </td>
|
|
1751
|
+
</tr>
|
|
1752
|
+
<tr>
|
|
1753
|
+
<td class="year">
|
|
1754
|
+
|
|
1755
|
+
</td>
|
|
1756
|
+
<td class="name">
|
|
1757
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/903342-shop-talk-the-cars-of-1969/" class="film-title-name">Shop Talk: The Cars of 1969</a> <span class="film-title-info"> - <span title="archivní záběry">a.z.</span></span></h3> </td>
|
|
1758
|
+
</tr>
|
|
1759
|
+
<tr>
|
|
1760
|
+
<td class="year">
|
|
1761
|
+
|
|
1762
|
+
</td>
|
|
1763
|
+
<td class="name">
|
|
1764
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/903338-the-fashion-of-1969/" class="film-title-name">The Fashion of 1969</a> <span class="film-title-info"> - <span title="archivní záběry">a.z.</span></span></h3> </td>
|
|
1765
|
+
</tr>
|
|
1766
|
+
<tr>
|
|
1767
|
+
<td class="year">
|
|
1768
|
+
2018
|
|
1769
|
+
</td>
|
|
1770
|
+
<td class="name">
|
|
1771
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/661760-eli-roth-historie-hororu/" class="film-title-name">Eli Roth: Historie hororu</a> <span class="film-title-info"> <span class="info">(seriál)</span></span></h3> </td>
|
|
1772
|
+
</tr>
|
|
1773
|
+
<tbody id="snippet-careerBox-1-episodes-661760-2018" data-ajax-append>
|
|
1774
|
+
<tr>
|
|
1775
|
+
<td class="year"> </td>
|
|
1776
|
+
<td class="episode">
|
|
1777
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/661760-eli-roth-historie-hororu/734903-upiri/" class="film-title-name">Upíři</a> <span class="film-title-info"> <span class="info">(S01E06)</span></span></h3> </td>
|
|
1778
|
+
</tr>
|
|
1779
|
+
<tr>
|
|
1780
|
+
<td class="year"> </td>
|
|
1781
|
+
<td class="episode">
|
|
1782
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/661760-eli-roth-historie-hororu/734902-killer-creatures/" class="film-title-name">Killer Creatures</a> <span class="film-title-info"> <span class="info">(S01E05)</span></span></h3> </td>
|
|
1783
|
+
</tr>
|
|
1784
|
+
<tr>
|
|
1785
|
+
<td class="year"> </td>
|
|
1786
|
+
<td class="episode">
|
|
1787
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/661760-eli-roth-historie-hororu/734901-demoni/" class="film-title-name">Démoni</a> <span class="film-title-info"> <span class="info">(S01E04)</span></span></h3> </td>
|
|
1788
|
+
</tr>
|
|
1789
|
+
</tbody>
|
|
1790
|
+
|
|
1791
|
+
<tbody id="snippet-careerBox-1-next-661760-2018">
|
|
1792
|
+
<tr>
|
|
1793
|
+
<td class="year"> </td>
|
|
1794
|
+
<td class="more-episode" colspan="2"><a href="/tvurce/2120-quentin-tarantino/prehled/?careerBox-1-year=2018&careerBox-1-creatorTypeId=1&careerBox-1-rootId=661760&careerBox-1-page=2&careerBox-1-sort=year&do=careerBox-1-more" class="ajax">více epizod (3)</a></td>
|
|
1795
|
+
</tr>
|
|
1796
|
+
</tbody>
|
|
1797
|
+
<tr>
|
|
1798
|
+
<td class="year">
|
|
1799
|
+
|
|
1800
|
+
</td>
|
|
1801
|
+
<td class="name">
|
|
1802
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/650728-tak-pravila-pauline-kael/" class="film-title-name">Tak pravila Pauline Kael</a> <span class="film-title-info"></span></h3> </td>
|
|
1803
|
+
</tr>
|
|
1804
|
+
<tr>
|
|
1805
|
+
<td class="year">
|
|
1806
|
+
|
|
1807
|
+
</td>
|
|
1808
|
+
<td class="name">
|
|
1809
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/649748-velky-buster-keaton/" class="film-title-name">Velký Buster Keaton</a> <span class="film-title-info"></span></h3> </td>
|
|
1810
|
+
</tr>
|
|
1811
|
+
<tr>
|
|
1812
|
+
<td class="year">
|
|
1813
|
+
|
|
1814
|
+
</td>
|
|
1815
|
+
<td class="name">
|
|
1816
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/650599-why-are-we-creative/" class="film-title-name">Why Are We Creative?</a> <span class="film-title-info"></span></h3> </td>
|
|
1817
|
+
</tr>
|
|
1818
|
+
<tr>
|
|
1819
|
+
<td class="year">
|
|
1820
|
+
|
|
1821
|
+
</td>
|
|
1822
|
+
<td class="name">
|
|
1823
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/649804-william-friedkin-bez-cenzury/" class="film-title-name">William Friedkin - bez cenzury</a> <span class="film-title-info"></span></h3> </td>
|
|
1824
|
+
</tr>
|
|
1825
|
+
<tr>
|
|
1826
|
+
<td class="year">
|
|
1827
|
+
2017
|
|
1828
|
+
</td>
|
|
1829
|
+
<td class="name">
|
|
1830
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1199297-behind-the-scenes/" class="film-title-name">Behind the Scenes</a> <span class="film-title-info"> - <span title="archivní záběry">a.z.</span></span></h3> </td>
|
|
1831
|
+
</tr>
|
|
1832
|
+
<tr>
|
|
1833
|
+
<td class="year">
|
|
1834
|
+
2016
|
|
1835
|
+
</td>
|
|
1836
|
+
<td class="name">
|
|
1837
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1182585-tourner-pour-vivre/" class="film-title-name">Tourner pour vivre</a> <span class="film-title-info"></span></h3> </td>
|
|
1838
|
+
</tr>
|
|
1839
|
+
<tr>
|
|
1840
|
+
<td class="year">
|
|
1841
|
+
2015
|
|
1842
|
+
</td>
|
|
1843
|
+
<td class="name">
|
|
1844
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/986292-la-legende-de-la-palme-d-or/" class="film-title-name">La Légende de la palme d'or</a> <span class="film-title-info"></span></h3> </td>
|
|
1845
|
+
</tr>
|
|
1846
|
+
<tr>
|
|
1847
|
+
<td class="year">
|
|
1848
|
+
2012
|
|
1849
|
+
</td>
|
|
1850
|
+
<td class="name">
|
|
1851
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/63695-tarantino-xx-20-years-of-filmmaking/" class="film-title-name">Tarantino XX - 20 Years of Filmmaking</a> <span class="film-title-info"></span></h3> </td>
|
|
1852
|
+
</tr>
|
|
1853
|
+
<tr>
|
|
1854
|
+
<td class="year">
|
|
1855
|
+
2011
|
|
1856
|
+
</td>
|
|
1857
|
+
<td class="name">
|
|
1858
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/298515-cormanuv-svet/" class="film-title-name">Cormanův svět</a> <span class="film-title-info"></span></h3> </td>
|
|
1859
|
+
</tr>
|
|
1860
|
+
<tr>
|
|
1861
|
+
<td class="year">
|
|
1862
|
+
|
|
1863
|
+
</td>
|
|
1864
|
+
<td class="name">
|
|
1865
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/294287-nejlepsi-film-jaky-byl-kdy-prodan/" class="film-title-name">Nejlepší film, jaký byl kdy prodán</a> <span class="film-title-info"></span></h3> </td>
|
|
1866
|
+
</tr>
|
|
1867
|
+
<tr>
|
|
1868
|
+
<td class="year">
|
|
1869
|
+
|
|
1870
|
+
</td>
|
|
1871
|
+
<td class="name">
|
|
1872
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/316691-nightmare-factory/" class="film-title-name">Nightmare Factory</a> <span class="film-title-info"></span></h3> </td>
|
|
1873
|
+
</tr>
|
|
1874
|
+
<tr>
|
|
1875
|
+
<td class="year">
|
|
1876
|
+
2010
|
|
1877
|
+
</td>
|
|
1878
|
+
<td class="name">
|
|
1879
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/278607-hollywood-don-t-surf/" class="film-title-name">Hollywood Don't Surf!</a> <span class="film-title-info"></span></h3> </td>
|
|
1880
|
+
</tr>
|
|
1881
|
+
<tr>
|
|
1882
|
+
<td class="year">
|
|
1883
|
+
2009
|
|
1884
|
+
</td>
|
|
1885
|
+
<td class="name">
|
|
1886
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/132965-michel-ciment-umeni-vnimat-film/" class="film-title-name">Michel Ciment, umění vnímat film</a> <span class="film-title-info"></span></h3> </td>
|
|
1887
|
+
</tr>
|
|
1888
|
+
<tr>
|
|
1889
|
+
<td class="year">
|
|
1890
|
+
2008
|
|
1891
|
+
</td>
|
|
1892
|
+
<td class="name">
|
|
1893
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/971372-a-conversation-with-enzo-castellari-and-quentin-tarantino/" class="film-title-name">A Conversation with Enzo Castellari and Quentin Tarantino</a> <span class="film-title-info"></span></h3> </td>
|
|
1894
|
+
</tr>
|
|
1895
|
+
<tr>
|
|
1896
|
+
<td class="year">
|
|
1897
|
+
|
|
1898
|
+
</td>
|
|
1899
|
+
<td class="name">
|
|
1900
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/230164-dead-on-the-life-and-cinema-of-george-a-romero/" class="film-title-name">Dead On: The Life and Cinema of George A. Romero</a> <span class="film-title-info"></span></h3> </td>
|
|
1901
|
+
</tr>
|
|
1902
|
+
<tr>
|
|
1903
|
+
<td class="year">
|
|
1904
|
+
|
|
1905
|
+
</td>
|
|
1906
|
+
<td class="name">
|
|
1907
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/253428-kam-se-hrabe-hollywood/" class="film-title-name">Kam se hrabe Hollywood</a> <span class="film-title-info"></span></h3> </td>
|
|
1908
|
+
</tr>
|
|
1909
|
+
<tr>
|
|
1910
|
+
<td class="year">
|
|
1911
|
+
|
|
1912
|
+
</td>
|
|
1913
|
+
<td class="name">
|
|
1914
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/277603-starz-inside-fantastic-flesh/" class="film-title-name">Starz Inside: Fantastic Flesh</a> <span class="film-title-info"> <span class="info">(TV film)</span></span></h3> </td>
|
|
1915
|
+
</tr>
|
|
1916
|
+
<tr>
|
|
1917
|
+
<td class="year">
|
|
1918
|
+
2007
|
|
1919
|
+
</td>
|
|
1920
|
+
<td class="name">
|
|
1921
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/249215-manufacturing-dissent/" class="film-title-name">Manufacturing Dissent</a> <span class="film-title-info"></span></h3> </td>
|
|
1922
|
+
</tr>
|
|
1923
|
+
<tr>
|
|
1924
|
+
<td class="year">
|
|
1925
|
+
2006
|
|
1926
|
+
</td>
|
|
1927
|
+
<td class="name">
|
|
1928
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/240070-50-films-to-see-before-you-die/" class="film-title-name">50 Films to See Before You Die</a> <span class="film-title-info"> <span class="info">(TV film)</span></span></h3> </td>
|
|
1929
|
+
</tr>
|
|
1930
|
+
<tr>
|
|
1931
|
+
<td class="year">
|
|
1932
|
+
|
|
1933
|
+
</td>
|
|
1934
|
+
<td class="name">
|
|
1935
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/228495-back-to-the-well-clerks-ii/" class="film-title-name">Back to the Well: Clerks II</a> <span class="film-title-info"></span></h3> </td>
|
|
1936
|
+
</tr>
|
|
1937
|
+
<tr>
|
|
1938
|
+
<td class="year">
|
|
1939
|
+
2005
|
|
1940
|
+
</td>
|
|
1941
|
+
<td class="name">
|
|
1942
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/260481-budd-boetticher-a-man-can-do-that/" class="film-title-name">Budd Boetticher: A Man Can Do That</a> <span class="film-title-info"> <span class="info">(TV film)</span></span></h3> </td>
|
|
1943
|
+
</tr>
|
|
1944
|
+
<tr>
|
|
1945
|
+
<td class="year">
|
|
1946
|
+
|
|
1947
|
+
</td>
|
|
1948
|
+
<td class="name">
|
|
1949
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/537615-l-hebdo-cinema/" class="film-title-name">L'Hebdo cinéma</a> <span class="film-title-info"> <span class="info">(seriál)</span></span></h3> </td>
|
|
1950
|
+
</tr>
|
|
1951
|
+
<tr>
|
|
1952
|
+
<td class="year">
|
|
1953
|
+
|
|
1954
|
+
</td>
|
|
1955
|
+
<td class="name">
|
|
1956
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/213569-make-your-own-damn-movie/" class="film-title-name">Make Your Own Damn Movie!</a> <span class="film-title-info"></span></h3> </td>
|
|
1957
|
+
</tr>
|
|
1958
|
+
<tr>
|
|
1959
|
+
<td class="year">
|
|
1960
|
+
|
|
1961
|
+
</td>
|
|
1962
|
+
<td class="name">
|
|
1963
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/202388-tsunami-aid-a-concert-of-hope/" class="film-title-name">Tsunami Aid: A Concert of Hope</a> <span class="film-title-info"> <span class="info">(koncert)</span></span></h3> </td>
|
|
1964
|
+
</tr>
|
|
1965
|
+
<tr>
|
|
1966
|
+
<td class="year">
|
|
1967
|
+
2004
|
|
1968
|
+
</td>
|
|
1969
|
+
<td class="name">
|
|
1970
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/61416-pulp-fiction-on-a-dime-a-10th-anniversary-retrospect/" class="film-title-name">'Pulp Fiction' on a Dime: A 10th Anniversary Retrospect</a> <span class="film-title-info"> <span class="info">(TV film)</span></span></h3> </td>
|
|
1971
|
+
</tr>
|
|
1972
|
+
<tr>
|
|
1973
|
+
<td class="year">
|
|
1974
|
+
|
|
1975
|
+
</td>
|
|
1976
|
+
<td class="name">
|
|
1977
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/282173-celluloid-horror/" class="film-title-name">Celluloid Horror</a> <span class="film-title-info"></span></h3> </td>
|
|
1978
|
+
</tr>
|
|
1979
|
+
<tr>
|
|
1980
|
+
<td class="year">
|
|
1981
|
+
|
|
1982
|
+
</td>
|
|
1983
|
+
<td class="name">
|
|
1984
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/135712-dvoji-vyzva/" class="film-title-name">Dvojí výzva</a> <span class="film-title-info"></span></h3> </td>
|
|
1985
|
+
</tr>
|
|
1986
|
+
<tr>
|
|
1987
|
+
<td class="year">
|
|
1988
|
+
|
|
1989
|
+
</td>
|
|
1990
|
+
<td class="name">
|
|
1991
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/218773-john-travolta-the-inside-story/" class="film-title-name">John Travolta: The Inside Story</a> <span class="film-title-info"> <span class="info">(TV film)</span></span></h3> </td>
|
|
1992
|
+
</tr>
|
|
1993
|
+
<tr>
|
|
1994
|
+
<td class="year">
|
|
1995
|
+
|
|
1996
|
+
</td>
|
|
1997
|
+
<td class="name">
|
|
1998
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/168403-kanal-z-velkolepa-posedlost/" class="film-title-name">Kanál Z: Velkolepá posedlost</a> <span class="film-title-info"> <span class="info">(TV film)</span></span></h3> </td>
|
|
1999
|
+
</tr>
|
|
2000
|
+
<tr>
|
|
2001
|
+
<td class="year">
|
|
2002
|
+
|
|
2003
|
+
</td>
|
|
2004
|
+
<td class="name">
|
|
2005
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/366670-the-anti-hero-s-journey/" class="film-title-name">The Anti-Hero's Journey</a> <span class="film-title-info"> - <span title="archivní záběry">a.z.</span></span></h3> </td>
|
|
2006
|
+
</tr>
|
|
2007
|
+
<tr>
|
|
2008
|
+
<td class="year">
|
|
2009
|
+
|
|
2010
|
+
</td>
|
|
2011
|
+
<td class="name">
|
|
2012
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/221765-the-cutting-edge-the-magic-of-movie-editing/" class="film-title-name">The Cutting Edge: The Magic of Movie Editing</a> <span class="film-title-info"></span></h3> </td>
|
|
2013
|
+
</tr>
|
|
2014
|
+
<tr>
|
|
2015
|
+
<td class="year">
|
|
2016
|
+
|
|
2017
|
+
</td>
|
|
2018
|
+
<td class="name">
|
|
2019
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/237922-the-making-of-kill-bill-volume-2/" class="film-title-name">The Making of 'Kill Bill: Volume 2'</a> <span class="film-title-info"> <span class="info">(TV film)</span></span></h3> </td>
|
|
2020
|
+
</tr>
|
|
2021
|
+
<tr>
|
|
2022
|
+
<td class="year">
|
|
2023
|
+
2003
|
|
2024
|
+
</td>
|
|
2025
|
+
<td class="name">
|
|
2026
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/218772-biography-john-travolta/" class="film-title-name">Biography: John Travolta</a> <span class="film-title-info"> <span class="info">(TV film)</span></span></h3> </td>
|
|
2027
|
+
</tr>
|
|
2028
|
+
<tr>
|
|
2029
|
+
<td class="year">
|
|
2030
|
+
|
|
2031
|
+
</td>
|
|
2032
|
+
<td class="name">
|
|
2033
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/191632-the-making-of-kill-bill/" class="film-title-name">The Making of 'Kill Bill'</a> <span class="film-title-info"> <span class="info">(TV film)</span></span></h3> </td>
|
|
2034
|
+
</tr>
|
|
2035
|
+
<tr>
|
|
2036
|
+
<td class="year">
|
|
2037
|
+
2002
|
|
2038
|
+
</td>
|
|
2039
|
+
<td class="name">
|
|
2040
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/43181-all-the-love-you-cannes/" class="film-title-name">All the Love You Cannes!</a> <span class="film-title-info"></span></h3> </td>
|
|
2041
|
+
</tr>
|
|
2042
|
+
<tr>
|
|
2043
|
+
<td class="year">
|
|
2044
|
+
|
|
2045
|
+
</td>
|
|
2046
|
+
<td class="name">
|
|
2047
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/41162-baadasssss-cinema/" class="film-title-name">Baadasssss Cinema</a> <span class="film-title-info"> <span class="info">(TV film)</span></span></h3> </td>
|
|
2048
|
+
</tr>
|
|
2049
|
+
<tr>
|
|
2050
|
+
<td class="year">
|
|
2051
|
+
|
|
2052
|
+
</td>
|
|
2053
|
+
<td class="name">
|
|
2054
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/238537-filmove-zanry/" class="film-title-name">Filmové žánry</a> <span class="film-title-info"> <span class="info">(seriál)</span></span></h3> </td>
|
|
2055
|
+
</tr>
|
|
2056
|
+
<tr>
|
|
2057
|
+
<td class="year">
|
|
2058
|
+
|
|
2059
|
+
</td>
|
|
2060
|
+
<td class="name">
|
|
2061
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/240564-jackie-brown-how-it-went-down/" class="film-title-name">Jackie Brown: How It Went Down</a> <span class="film-title-info"></span></h3> </td>
|
|
2062
|
+
</tr>
|
|
2063
|
+
<tr>
|
|
2064
|
+
<td class="year">
|
|
2065
|
+
|
|
2066
|
+
</td>
|
|
2067
|
+
<td class="name">
|
|
2068
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/74950-pulp-fiction-the-facts/" class="film-title-name">Pulp Fiction: The Facts</a> <span class="film-title-info"></span></h3> </td>
|
|
2069
|
+
</tr>
|
|
2070
|
+
<tr>
|
|
2071
|
+
<td class="year">
|
|
2072
|
+
|
|
2073
|
+
</td>
|
|
2074
|
+
<td class="name">
|
|
2075
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/135022-sundance-20/" class="film-title-name">Sundance 20</a> <span class="film-title-info"></span></h3> </td>
|
|
2076
|
+
</tr>
|
|
2077
|
+
<tr>
|
|
2078
|
+
<td class="year">
|
|
2079
|
+
|
|
2080
|
+
</td>
|
|
2081
|
+
<td class="name">
|
|
2082
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/135344-the-class-of-92/" class="film-title-name">The Class of '92</a> <span class="film-title-info"></span></h3> </td>
|
|
2083
|
+
</tr>
|
|
2084
|
+
<tr>
|
|
2085
|
+
<td class="year">
|
|
2086
|
+
2001
|
|
2087
|
+
</td>
|
|
2088
|
+
<td class="name">
|
|
2089
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/134005-die-zehn-gebote-der-kreativitat/" class="film-title-name">Die zehn Gebote der Kreativität</a> <span class="film-title-info"> <span class="info">(TV film)</span></span></h3> </td>
|
|
2090
|
+
</tr>
|
|
2091
|
+
<tr>
|
|
2092
|
+
<td class="year">
|
|
2093
|
+
|
|
2094
|
+
</td>
|
|
2095
|
+
<td class="name">
|
|
2096
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/623658-hudba-stribrneho-platna/" class="film-title-name">Hudba stříbrného plátna</a> <span class="film-title-info"> <span class="info">(seriál)</span></span></h3> </td>
|
|
2097
|
+
</tr>
|
|
2098
|
+
<tr>
|
|
2099
|
+
<td class="year">
|
|
2100
|
+
|
|
2101
|
+
</td>
|
|
2102
|
+
<td class="name">
|
|
2103
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/88886-sergio-leone/" class="film-title-name">Sergio Leone</a> <span class="film-title-info"></span></h3> </td>
|
|
2104
|
+
</tr>
|
|
2105
|
+
<tr>
|
|
2106
|
+
<td class="year">
|
|
2107
|
+
2000
|
|
2108
|
+
</td>
|
|
2109
|
+
<td class="name">
|
|
2110
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/167441-hollywood-miri-do-pekel/" class="film-title-name">Hollywood míří do pekel</a> <span class="film-title-info"> <span class="info">(TV film)</span></span></h3> </td>
|
|
2111
|
+
</tr>
|
|
2112
|
+
<tr>
|
|
2113
|
+
<td class="year">
|
|
2114
|
+
1999
|
|
2115
|
+
</td>
|
|
2116
|
+
<td class="name">
|
|
2117
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/117948-a-e-biography-samuel-l-jackson/" class="film-title-name">A&E Biography: Samuel L. Jackson</a> <span class="film-title-info"> <span class="info">(TV film)</span></span></h3> </td>
|
|
2118
|
+
</tr>
|
|
2119
|
+
<tr>
|
|
2120
|
+
<td class="year">
|
|
2121
|
+
|
|
2122
|
+
</td>
|
|
2123
|
+
<td class="name">
|
|
2124
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/45752-christopher-jones-the-e-true-hollywood-story/" class="film-title-name">Christopher Jones: The E! True Hollywood Story</a> <span class="film-title-info"> <span class="info">(TV film)</span></span></h3> </td>
|
|
2125
|
+
</tr>
|
|
2126
|
+
<tr>
|
|
2127
|
+
<td class="year">
|
|
2128
|
+
|
|
2129
|
+
</td>
|
|
2130
|
+
<td class="name">
|
|
2131
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/43760-forever-hollywood/" class="film-title-name">Forever Hollywood</a> <span class="film-title-info"> <span class="info">(TV film)</span></span></h3> </td>
|
|
2132
|
+
</tr>
|
|
2133
|
+
<tr>
|
|
2134
|
+
<td class="year">
|
|
2135
|
+
|
|
2136
|
+
</td>
|
|
2137
|
+
<td class="name">
|
|
2138
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/41175-intimate-portrait-pam-grier/" class="film-title-name">Intimate Portrait: Pam Grier</a> <span class="film-title-info"> <span class="info">(TV film)</span></span></h3> </td>
|
|
2139
|
+
</tr>
|
|
2140
|
+
<tr>
|
|
2141
|
+
<td class="year">
|
|
2142
|
+
1998
|
|
2143
|
+
</td>
|
|
2144
|
+
<td class="name">
|
|
2145
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/69644-jackie-chan-my-story/" class="film-title-name">Jackie Chan: My Story</a> <span class="film-title-info"></span></h3> </td>
|
|
2146
|
+
</tr>
|
|
2147
|
+
<tr>
|
|
2148
|
+
<td class="year">
|
|
2149
|
+
1997
|
|
2150
|
+
</td>
|
|
2151
|
+
<td class="name">
|
|
2152
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/34702-full-tilt-boogie/" class="film-title-name">Full Tilt Boogie</a> <span class="film-title-info"></span></h3> </td>
|
|
2153
|
+
</tr>
|
|
2154
|
+
<tr>
|
|
2155
|
+
<td class="year">
|
|
2156
|
+
|
|
2157
|
+
</td>
|
|
2158
|
+
<td class="name">
|
|
2159
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/35699-off-the-menu-the-last-days-of-chasen-s/" class="film-title-name">Off the Menu: The Last Days of Chasen's</a> <span class="film-title-info"></span></h3> </td>
|
|
2160
|
+
</tr>
|
|
2161
|
+
<tr>
|
|
2162
|
+
<td class="year">
|
|
2163
|
+
1996
|
|
2164
|
+
</td>
|
|
2165
|
+
<td class="name">
|
|
2166
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/45538-the-typewriter-the-rifle-the-movie-camera/" class="film-title-name">The Typewriter, the Rifle & the Movie Camera</a> <span class="film-title-info"></span></h3> </td>
|
|
2167
|
+
</tr>
|
|
2168
|
+
<tr>
|
|
2169
|
+
<td class="year">
|
|
2170
|
+
1995
|
|
2171
|
+
</td>
|
|
2172
|
+
<td class="name">
|
|
2173
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/73245-american-cinema/" class="film-title-name">American Cinema</a> <span class="film-title-info"> <span class="info">(seriál)</span></span></h3> </td>
|
|
2174
|
+
</tr>
|
|
2175
|
+
<tr>
|
|
2176
|
+
<td class="year">
|
|
2177
|
+
|
|
2178
|
+
</td>
|
|
2179
|
+
<td class="name">
|
|
2180
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/45751-the-anatomy-of-horror/" class="film-title-name">The Anatomy of Horror</a> <span class="film-title-info"> <span class="info">(TV film)</span></span></h3> </td>
|
|
2181
|
+
</tr>
|
|
2182
|
+
<tr>
|
|
2183
|
+
<td class="year">
|
|
2184
|
+
1993
|
|
2185
|
+
</td>
|
|
2186
|
+
<td class="name">
|
|
2187
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/313217-cinefile-made-in-the-usa/" class="film-title-name">Cinefile: Made in the USA</a> <span class="film-title-info"> <span class="info">(TV film)</span></span></h3> </td>
|
|
2188
|
+
</tr>
|
|
2189
|
+
<tr>
|
|
2190
|
+
<td class="year">
|
|
2191
|
+
1990
|
|
2192
|
+
</td>
|
|
2193
|
+
<td class="name">
|
|
2194
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1110197-intimate-portrait/" class="film-title-name">Intimate Portrait</a> <span class="film-title-info"> <span class="info">(seriál)</span></span></h3> </td>
|
|
2195
|
+
</tr>
|
|
2196
|
+
<tr>
|
|
2197
|
+
<td class="year">
|
|
2198
|
+
1987
|
|
2199
|
+
</td>
|
|
2200
|
+
<td class="name">
|
|
2201
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/184458-biography/" class="film-title-name">Biography</a> <span class="film-title-info"> <span class="info">(seriál)</span></span></h3> </td>
|
|
2202
|
+
</tr>
|
|
2203
|
+
</tbody>
|
|
2204
|
+
</table>
|
|
2205
|
+
<table class="no-column-borders">
|
|
2206
|
+
<tbody>
|
|
2207
|
+
<tr>
|
|
2208
|
+
<th colspan="2">Krátkometrážní</th>
|
|
2209
|
+
</tr>
|
|
2210
|
+
<tr>
|
|
2211
|
+
<td class="year">
|
|
2212
|
+
2009
|
|
2213
|
+
</td>
|
|
2214
|
+
<td class="name">
|
|
2215
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/265176-pycha-naroda/" class="film-title-name">Pýcha národa</a> <span class="film-title-info"></span></h3> </td>
|
|
2216
|
+
</tr>
|
|
2217
|
+
<tr>
|
|
2218
|
+
<td class="year">
|
|
2219
|
+
1995
|
|
2220
|
+
</td>
|
|
2221
|
+
<td class="name">
|
|
2222
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/240544-dance-me-to-the-end-of-love/" class="film-title-name">Dance Me to the End of Love</a> <span class="film-title-info"></span></h3> </td>
|
|
2223
|
+
</tr>
|
|
2224
|
+
<tr>
|
|
2225
|
+
<td class="year">
|
|
2226
|
+
1994
|
|
2227
|
+
</td>
|
|
2228
|
+
<td class="name">
|
|
2229
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/34701-the-coriolis-effect/" class="film-title-name">The Coriolis Effect</a> <span class="film-title-info"></span></h3> </td>
|
|
2230
|
+
</tr>
|
|
2231
|
+
<tr>
|
|
2232
|
+
<td class="year">
|
|
2233
|
+
1991
|
|
2234
|
+
</td>
|
|
2235
|
+
<td class="name">
|
|
2236
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/1051715-reservoir-dogs-sundance-institute-1991-june-film-lab/" class="film-title-name">Reservoir Dogs: Sundance Institute 1991 June Film Lab</a> <span class="film-title-info"></span></h3> </td>
|
|
2237
|
+
</tr>
|
|
2238
|
+
</tbody>
|
|
2239
|
+
</table>
|
|
2240
|
+
</div>
|
|
2241
|
+
</section>
|
|
2242
|
+
<section class="box">
|
|
2243
|
+
<header class="box-header">
|
|
2244
|
+
<h2>Producent</h2>
|
|
2245
|
+
<div class="box-header-action">
|
|
2246
|
+
<form action="" method="get" data-form="get">
|
|
2247
|
+
<select name="sort" data-auto-submit-form="true" data-empty-value="year" id="frm-sort-careerBox-7-sort-sort"><option value="year">seřadit od nejnovějšího</option><option value="sort_average">seřadit od nejlepšího</option><option value="rating_count">seřadit podle počtu hodnocení</option></select>
|
|
2248
|
+
</form>
|
|
2249
|
+
</div>
|
|
2250
|
+
</header>
|
|
2251
|
+
<div class="box-content">
|
|
2252
|
+
<table class="no-column-borders">
|
|
2253
|
+
<tbody>
|
|
2254
|
+
<tr>
|
|
2255
|
+
<th colspan="2">Filmy</th>
|
|
2256
|
+
</tr>
|
|
2257
|
+
<tr>
|
|
2258
|
+
<td class="year">
|
|
2259
|
+
2025
|
|
2260
|
+
</td>
|
|
2261
|
+
<td class="name">
|
|
2262
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1328972-the-movie-critic/" class="film-title-name">The Movie Critic</a> <span class="film-title-info"></span></h3> </td>
|
|
2263
|
+
</tr>
|
|
2264
|
+
<tr>
|
|
2265
|
+
<td class="year">
|
|
2266
|
+
2019
|
|
2267
|
+
</td>
|
|
2268
|
+
<td class="name">
|
|
2269
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/527699-tenkrat-v-hollywoodu/" class="film-title-name">Tenkrát v Hollywoodu</a> <span class="film-title-info"></span></h3> </td>
|
|
2270
|
+
</tr>
|
|
2271
|
+
<tr>
|
|
2272
|
+
<td class="year">
|
|
2273
|
+
2007
|
|
2274
|
+
</td>
|
|
2275
|
+
<td class="name">
|
|
2276
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/229384-grindhouse-auto-zabijak/" class="film-title-name">Grindhouse: Auto zabiják</a> <span class="film-title-info"></span></h3> </td>
|
|
2277
|
+
</tr>
|
|
2278
|
+
<tr>
|
|
2279
|
+
<td class="year">
|
|
2280
|
+
|
|
2281
|
+
</td>
|
|
2282
|
+
<td class="name">
|
|
2283
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/221616-grindhouse-planeta-teror/" class="film-title-name">Grindhouse: Planeta Teror</a> <span class="film-title-info"></span></h3> </td>
|
|
2284
|
+
</tr>
|
|
2285
|
+
<tr>
|
|
2286
|
+
<td class="year">
|
|
2287
|
+
1996
|
|
2288
|
+
</td>
|
|
2289
|
+
<td class="name">
|
|
2290
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/7744-od-soumraku-do-usvitu/" class="film-title-name">Od soumraku do úsvitu</a> <span class="film-title-info"></span></h3> </td>
|
|
2291
|
+
</tr>
|
|
2292
|
+
<tr>
|
|
2293
|
+
<td class="year">
|
|
2294
|
+
1987
|
|
2295
|
+
</td>
|
|
2296
|
+
<td class="name">
|
|
2297
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/117078-my-best-friend-s-birthday/" class="film-title-name">My Best Friend's Birthday</a> <span class="film-title-info"></span></h3> </td>
|
|
2298
|
+
</tr>
|
|
2299
|
+
</tbody>
|
|
2300
|
+
</table>
|
|
2301
|
+
</div>
|
|
2302
|
+
</section>
|
|
2303
|
+
<section class="box">
|
|
2304
|
+
<header class="box-header">
|
|
2305
|
+
<h2>Kameraman</h2>
|
|
2306
|
+
<div class="box-header-action">
|
|
2307
|
+
<form action="" method="get" data-form="get">
|
|
2308
|
+
<select name="sort" data-auto-submit-form="true" data-empty-value="year" id="frm-sort-careerBox-6-sort-sort"><option value="year">seřadit od nejnovějšího</option><option value="sort_average">seřadit od nejlepšího</option><option value="rating_count">seřadit podle počtu hodnocení</option></select>
|
|
2309
|
+
</form>
|
|
2310
|
+
</div>
|
|
2311
|
+
</header>
|
|
2312
|
+
<div class="box-content">
|
|
2313
|
+
<table class="no-column-borders">
|
|
2314
|
+
<tbody>
|
|
2315
|
+
<tr>
|
|
2316
|
+
<th colspan="2">Filmy</th>
|
|
2317
|
+
</tr>
|
|
2318
|
+
<tr>
|
|
2319
|
+
<td class="year">
|
|
2320
|
+
2007
|
|
2321
|
+
</td>
|
|
2322
|
+
<td class="name">
|
|
2323
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/229384-grindhouse-auto-zabijak/" class="film-title-name">Grindhouse: Auto zabiják</a> <span class="film-title-info"></span></h3> </td>
|
|
2324
|
+
</tr>
|
|
2325
|
+
</tbody>
|
|
2326
|
+
</table>
|
|
2327
|
+
<table class="no-column-borders">
|
|
2328
|
+
<tbody>
|
|
2329
|
+
<tr>
|
|
2330
|
+
<th colspan="2">Krátkometrážní</th>
|
|
2331
|
+
</tr>
|
|
2332
|
+
<tr>
|
|
2333
|
+
<td class="year">
|
|
2334
|
+
1991
|
|
2335
|
+
</td>
|
|
2336
|
+
<td class="name">
|
|
2337
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/1051715-reservoir-dogs-sundance-institute-1991-june-film-lab/" class="film-title-name">Reservoir Dogs: Sundance Institute 1991 June Film Lab</a> <span class="film-title-info"></span></h3> </td>
|
|
2338
|
+
</tr>
|
|
2339
|
+
</tbody>
|
|
2340
|
+
</table>
|
|
2341
|
+
</div>
|
|
2342
|
+
</section>
|
|
2343
|
+
<section class="box">
|
|
2344
|
+
<header class="box-header">
|
|
2345
|
+
<h2>Střihač</h2>
|
|
2346
|
+
<div class="box-header-action">
|
|
2347
|
+
<form action="" method="get" data-form="get">
|
|
2348
|
+
<select name="sort" data-auto-submit-form="true" data-empty-value="year" id="frm-sort-careerBox-8-sort-sort"><option value="year">seřadit od nejnovějšího</option><option value="sort_average">seřadit od nejlepšího</option><option value="rating_count">seřadit podle počtu hodnocení</option></select>
|
|
2349
|
+
</form>
|
|
2350
|
+
</div>
|
|
2351
|
+
</header>
|
|
2352
|
+
<div class="box-content">
|
|
2353
|
+
<table class="no-column-borders">
|
|
2354
|
+
<tbody>
|
|
2355
|
+
<tr>
|
|
2356
|
+
<th colspan="2">Filmy</th>
|
|
2357
|
+
</tr>
|
|
2358
|
+
<tr>
|
|
2359
|
+
<td class="year">
|
|
2360
|
+
1987
|
|
2361
|
+
</td>
|
|
2362
|
+
<td class="name">
|
|
2363
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/117078-my-best-friend-s-birthday/" class="film-title-name">My Best Friend's Birthday</a> <span class="film-title-info"></span></h3> </td>
|
|
2364
|
+
</tr>
|
|
2365
|
+
</tbody>
|
|
2366
|
+
</table>
|
|
2367
|
+
<table class="no-column-borders">
|
|
2368
|
+
<tbody>
|
|
2369
|
+
<tr>
|
|
2370
|
+
<th colspan="2">Krátkometrážní</th>
|
|
2371
|
+
</tr>
|
|
2372
|
+
<tr>
|
|
2373
|
+
<td class="year">
|
|
2374
|
+
1991
|
|
2375
|
+
</td>
|
|
2376
|
+
<td class="name">
|
|
2377
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/1051715-reservoir-dogs-sundance-institute-1991-june-film-lab/" class="film-title-name">Reservoir Dogs: Sundance Institute 1991 June Film Lab</a> <span class="film-title-info"></span></h3> </td>
|
|
2378
|
+
</tr>
|
|
2379
|
+
</tbody>
|
|
2380
|
+
</table>
|
|
2381
|
+
</div>
|
|
2382
|
+
</section>
|
|
2383
|
+
<section class="box">
|
|
2384
|
+
<header class="box-header">
|
|
2385
|
+
<h2>Účinkující</h2>
|
|
2386
|
+
<div class="box-header-action">
|
|
2387
|
+
<form action="" method="get" data-form="get">
|
|
2388
|
+
<select name="sort" data-auto-submit-form="true" data-empty-value="year" id="frm-sort-careerBox-14-sort-sort"><option value="year">seřadit od nejnovějšího</option><option value="sort_average">seřadit od nejlepšího</option><option value="rating_count">seřadit podle počtu hodnocení</option></select>
|
|
2389
|
+
</form>
|
|
2390
|
+
</div>
|
|
2391
|
+
</header>
|
|
2392
|
+
<div class="box-content">
|
|
2393
|
+
<table class="no-column-borders">
|
|
2394
|
+
<tbody>
|
|
2395
|
+
<tr>
|
|
2396
|
+
<th colspan="2">Pořady</th>
|
|
2397
|
+
</tr>
|
|
2398
|
+
<tr>
|
|
2399
|
+
<td class="year">
|
|
2400
|
+
2023
|
|
2401
|
+
</td>
|
|
2402
|
+
<td class="name">
|
|
2403
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/1294284-80th-golden-globe-awards/" class="film-title-name">80th Golden Globe Awards</a> <span class="film-title-info"></span></h3> </td>
|
|
2404
|
+
</tr>
|
|
2405
|
+
<tr>
|
|
2406
|
+
<td class="year">
|
|
2407
|
+
2022
|
|
2408
|
+
</td>
|
|
2409
|
+
<td class="name">
|
|
2410
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1165725-club-random-with-bill-maher/" class="film-title-name">Club Random with Bill Maher</a> <span class="film-title-info"></span></h3> </td>
|
|
2411
|
+
</tr>
|
|
2412
|
+
<tr>
|
|
2413
|
+
<td class="year">
|
|
2414
|
+
|
|
2415
|
+
</td>
|
|
2416
|
+
<td class="name">
|
|
2417
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1410244-who-s-talking-to-chris-wallace/" class="film-title-name">Who's Talking to Chris Wallace?</a> <span class="film-title-info"></span></h3> </td>
|
|
2418
|
+
</tr>
|
|
2419
|
+
<tr>
|
|
2420
|
+
<td class="year">
|
|
2421
|
+
2020
|
|
2422
|
+
</td>
|
|
2423
|
+
<td class="name">
|
|
2424
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/809546-26th-annual-screen-actors-guild-awards/" class="film-title-name">26th Annual Screen Actors Guild Awards</a> <span class="film-title-info"></span></h3> </td>
|
|
2425
|
+
</tr>
|
|
2426
|
+
<tr>
|
|
2427
|
+
<td class="year">
|
|
2428
|
+
|
|
2429
|
+
</td>
|
|
2430
|
+
<td class="name">
|
|
2431
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/804712-77th-golden-globe-awards/" class="film-title-name">77th Golden Globe Awards</a> <span class="film-title-info"></span></h3> </td>
|
|
2432
|
+
</tr>
|
|
2433
|
+
<tr>
|
|
2434
|
+
<td class="year">
|
|
2435
|
+
|
|
2436
|
+
</td>
|
|
2437
|
+
<td class="name">
|
|
2438
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/812823-oscar-2020/" class="film-title-name">Oscar 2020</a> <span class="film-title-info"></span></h3> </td>
|
|
2439
|
+
</tr>
|
|
2440
|
+
<tr>
|
|
2441
|
+
<td class="year">
|
|
2442
|
+
2018
|
|
2443
|
+
</td>
|
|
2444
|
+
<td class="name">
|
|
2445
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1205475-front-row-flynn/" class="film-title-name">Front Row Flynn</a> <span class="film-title-info"></span></h3> </td>
|
|
2446
|
+
</tr>
|
|
2447
|
+
<tr>
|
|
2448
|
+
<td class="year">
|
|
2449
|
+
|
|
2450
|
+
</td>
|
|
2451
|
+
<td class="name">
|
|
2452
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1293890-hollywood-insider/" class="film-title-name">Hollywood Insider</a> <span class="film-title-info"></span></h3> </td>
|
|
2453
|
+
</tr>
|
|
2454
|
+
<tr>
|
|
2455
|
+
<td class="year">
|
|
2456
|
+
2016
|
|
2457
|
+
</td>
|
|
2458
|
+
<td class="name">
|
|
2459
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1425727-nerdrotic/" class="film-title-name">Nerdrotic</a> <span class="film-title-info"> - <span title="archivní záběry">a.z.</span></span></h3> </td>
|
|
2460
|
+
</tr>
|
|
2461
|
+
<tr>
|
|
2462
|
+
<td class="year">
|
|
2463
|
+
|
|
2464
|
+
</td>
|
|
2465
|
+
<td class="name">
|
|
2466
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/417711-zlaty-globus-2016/" class="film-title-name">Zlatý Glóbus 2016</a> <span class="film-title-info"></span></h3> </td>
|
|
2467
|
+
</tr>
|
|
2468
|
+
<tr>
|
|
2469
|
+
<td class="year">
|
|
2470
|
+
2015
|
|
2471
|
+
</td>
|
|
2472
|
+
<td class="name">
|
|
2473
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1205208-close-up-with-the-hollywood-reporter/" class="film-title-name">Close Up with the Hollywood Reporter</a> <span class="film-title-info"></span></h3> </td>
|
|
2474
|
+
</tr>
|
|
2475
|
+
<tr>
|
|
2476
|
+
<td class="year">
|
|
2477
|
+
|
|
2478
|
+
</td>
|
|
2479
|
+
<td class="name">
|
|
2480
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/399286-the-late-show-with-stephen-colbert/" class="film-title-name">The Late Show with Stephen Colbert</a> <span class="film-title-info"></span></h3> </td>
|
|
2481
|
+
</tr>
|
|
2482
|
+
<tr>
|
|
2483
|
+
<td class="year">
|
|
2484
|
+
2013
|
|
2485
|
+
</td>
|
|
2486
|
+
<td class="name">
|
|
2487
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/330165-85-annual-academy-awards/" class="film-title-name">85. Annual Academy Awards</a> <span class="film-title-info"></span></h3> </td>
|
|
2488
|
+
</tr>
|
|
2489
|
+
<tr>
|
|
2490
|
+
<td class="year">
|
|
2491
|
+
|
|
2492
|
+
</td>
|
|
2493
|
+
<td class="name">
|
|
2494
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1108736-the-big-interview-with-dan-rather/" class="film-title-name">The Big Interview with Dan Rather</a> <span class="film-title-info"></span></h3> </td>
|
|
2495
|
+
</tr>
|
|
2496
|
+
<tr>
|
|
2497
|
+
<td class="year">
|
|
2498
|
+
|
|
2499
|
+
</td>
|
|
2500
|
+
<td class="name">
|
|
2501
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/330506-zlaty-globus-2013/" class="film-title-name">Zlatý Glóbus 2013</a> <span class="film-title-info"></span></h3> </td>
|
|
2502
|
+
</tr>
|
|
2503
|
+
<tr>
|
|
2504
|
+
<td class="year">
|
|
2505
|
+
2012
|
|
2506
|
+
</td>
|
|
2507
|
+
<td class="name">
|
|
2508
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1470604-msn-exclusives/" class="film-title-name">MSN Exclusives</a> <span class="film-title-info"></span></h3> </td>
|
|
2509
|
+
</tr>
|
|
2510
|
+
<tr>
|
|
2511
|
+
<td class="year">
|
|
2512
|
+
2011
|
|
2513
|
+
</td>
|
|
2514
|
+
<td class="name">
|
|
2515
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/310670-scream-awards/" class="film-title-name">Scream Awards</a> <span class="film-title-info"></span></h3> </td>
|
|
2516
|
+
</tr>
|
|
2517
|
+
<tr>
|
|
2518
|
+
<td class="year">
|
|
2519
|
+
2010
|
|
2520
|
+
</td>
|
|
2521
|
+
<td class="name">
|
|
2522
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1585163-15th-annual-critics-choice-movie-awards/" class="film-title-name">15th Annual Critics' Choice Movie Awards</a> <span class="film-title-info"></span></h3> </td>
|
|
2523
|
+
</tr>
|
|
2524
|
+
<tr>
|
|
2525
|
+
<td class="year">
|
|
2526
|
+
|
|
2527
|
+
</td>
|
|
2528
|
+
<td class="name">
|
|
2529
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1204619-41st-naacp-image-awards/" class="film-title-name">41st NAACP Image Awards</a> <span class="film-title-info"></span></h3> </td>
|
|
2530
|
+
</tr>
|
|
2531
|
+
<tr>
|
|
2532
|
+
<td class="year">
|
|
2533
|
+
|
|
2534
|
+
</td>
|
|
2535
|
+
<td class="name">
|
|
2536
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/273290-82-annual-academy-awards/" class="film-title-name">82. Annual Academy Awards</a> <span class="film-title-info"></span></h3> </td>
|
|
2537
|
+
</tr>
|
|
2538
|
+
<tr>
|
|
2539
|
+
<td class="year">
|
|
2540
|
+
|
|
2541
|
+
</td>
|
|
2542
|
+
<td class="name">
|
|
2543
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/272565-grammy-awards-2010/" class="film-title-name">Grammy Awards 2010</a> <span class="film-title-info"></span></h3> </td>
|
|
2544
|
+
</tr>
|
|
2545
|
+
<tr>
|
|
2546
|
+
<td class="year">
|
|
2547
|
+
|
|
2548
|
+
</td>
|
|
2549
|
+
<td class="name">
|
|
2550
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/272436-zlaty-globus-2010/" class="film-title-name">Zlatý Glóbus 2010</a> <span class="film-title-info"></span></h3> </td>
|
|
2551
|
+
</tr>
|
|
2552
|
+
<tr>
|
|
2553
|
+
<td class="year">
|
|
2554
|
+
2009
|
|
2555
|
+
</td>
|
|
2556
|
+
<td class="name">
|
|
2557
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1235798-live-from-studio-five/" class="film-title-name">Live from Studio Five</a> <span class="film-title-info"></span></h3> </td>
|
|
2558
|
+
</tr>
|
|
2559
|
+
<tr>
|
|
2560
|
+
<td class="year">
|
|
2561
|
+
|
|
2562
|
+
</td>
|
|
2563
|
+
<td class="name">
|
|
2564
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/318371-spike-s-guys-choice/" class="film-title-name">Spike's Guys Choice</a> <span class="film-title-info"></span></h3> </td>
|
|
2565
|
+
</tr>
|
|
2566
|
+
<tr>
|
|
2567
|
+
<td class="year">
|
|
2568
|
+
|
|
2569
|
+
</td>
|
|
2570
|
+
<td class="name">
|
|
2571
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/266504-the-jay-leno-show/" class="film-title-name">The Jay Leno Show</a> <span class="film-title-info"></span></h3> </td>
|
|
2572
|
+
</tr>
|
|
2573
|
+
<tr>
|
|
2574
|
+
<td class="year">
|
|
2575
|
+
|
|
2576
|
+
</td>
|
|
2577
|
+
<td class="name">
|
|
2578
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/508727-the-joe-rogan-experience/" class="film-title-name">The Joe Rogan Experience</a> <span class="film-title-info"></span></h3> </td>
|
|
2579
|
+
</tr>
|
|
2580
|
+
<tr>
|
|
2581
|
+
<td class="year">
|
|
2582
|
+
|
|
2583
|
+
</td>
|
|
2584
|
+
<td class="name">
|
|
2585
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/262013-the-tonight-show-with-conan-o-brien/" class="film-title-name">The Tonight Show with Conan O'Brien</a> <span class="film-title-info"></span></h3> </td>
|
|
2586
|
+
</tr>
|
|
2587
|
+
<tr>
|
|
2588
|
+
<td class="year">
|
|
2589
|
+
2008
|
|
2590
|
+
</td>
|
|
2591
|
+
<td class="name">
|
|
2592
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/251217-warren-beatty-pocta-za-celozivotni-dilo/" class="film-title-name">Warren Beatty - pocta za celoživotní dílo</a> <span class="film-title-info"></span></h3> </td>
|
|
2593
|
+
</tr>
|
|
2594
|
+
<tr>
|
|
2595
|
+
<td class="year">
|
|
2596
|
+
|
|
2597
|
+
</td>
|
|
2598
|
+
<td class="name">
|
|
2599
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/382788-world-s-dumbest/" class="film-title-name">World's Dumbest</a> <span class="film-title-info"></span></h3> </td>
|
|
2600
|
+
</tr>
|
|
2601
|
+
<tr>
|
|
2602
|
+
<td class="year">
|
|
2603
|
+
2007
|
|
2604
|
+
</td>
|
|
2605
|
+
<td class="name">
|
|
2606
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/255168-scream-awards-2007/" class="film-title-name">Scream Awards 2007</a> <span class="film-title-info"></span></h3> </td>
|
|
2607
|
+
</tr>
|
|
2608
|
+
<tr>
|
|
2609
|
+
<td class="year">
|
|
2610
|
+
|
|
2611
|
+
</td>
|
|
2612
|
+
<td class="name">
|
|
2613
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/457858-the-big-fat-anniversary-quiz/" class="film-title-name">The Big Fat Anniversary Quiz</a> <span class="film-title-info"></span></h3> </td>
|
|
2614
|
+
</tr>
|
|
2615
|
+
<tr>
|
|
2616
|
+
<td class="year">
|
|
2617
|
+
|
|
2618
|
+
</td>
|
|
2619
|
+
<td class="name">
|
|
2620
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/291145-xpose/" class="film-title-name">Xposé</a> <span class="film-title-info"></span></h3> </td>
|
|
2621
|
+
</tr>
|
|
2622
|
+
<tr>
|
|
2623
|
+
<td class="year">
|
|
2624
|
+
2005
|
|
2625
|
+
</td>
|
|
2626
|
+
<td class="name">
|
|
2627
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/252507-2005-mtv-movie-awards/" class="film-title-name">2005 MTV Movie Awards</a> <span class="film-title-info"></span></h3> </td>
|
|
2628
|
+
</tr>
|
|
2629
|
+
<tr>
|
|
2630
|
+
<td class="year">
|
|
2631
|
+
|
|
2632
|
+
</td>
|
|
2633
|
+
<td class="name">
|
|
2634
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1189873-entertainment-tonight-canada/" class="film-title-name">Entertainment Tonight Canada</a> <span class="film-title-info"></span></h3> </td>
|
|
2635
|
+
</tr>
|
|
2636
|
+
<tr>
|
|
2637
|
+
<td class="year">
|
|
2638
|
+
|
|
2639
|
+
</td>
|
|
2640
|
+
<td class="name">
|
|
2641
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/230147-nocni-show-craiga-fergusona/" class="film-title-name">Noční Show Craiga Fergusona</a> <span class="film-title-info"></span></h3> </td>
|
|
2642
|
+
</tr>
|
|
2643
|
+
<tr>
|
|
2644
|
+
<td class="year">
|
|
2645
|
+
|
|
2646
|
+
</td>
|
|
2647
|
+
<td class="name">
|
|
2648
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/259548-show-tyry-banksove/" class="film-title-name">Show Tyry Banksové</a> <span class="film-title-info"></span></h3> </td>
|
|
2649
|
+
</tr>
|
|
2650
|
+
<tr>
|
|
2651
|
+
<td class="year">
|
|
2652
|
+
|
|
2653
|
+
</td>
|
|
2654
|
+
<td class="name">
|
|
2655
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/180031-the-57th-annual-primetime-emmy-awards/" class="film-title-name">The 57th Annual Primetime Emmy Awards</a> <span class="film-title-info"></span></h3> </td>
|
|
2656
|
+
</tr>
|
|
2657
|
+
<tr>
|
|
2658
|
+
<td class="year">
|
|
2659
|
+
2004
|
|
2660
|
+
</td>
|
|
2661
|
+
<td class="name">
|
|
2662
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1238462-2004-mtv-movie-awards/" class="film-title-name">2004 MTV Movie Awards</a> <span class="film-title-info"></span></h3> </td>
|
|
2663
|
+
</tr>
|
|
2664
|
+
<tr>
|
|
2665
|
+
<td class="year">
|
|
2666
|
+
|
|
2667
|
+
</td>
|
|
2668
|
+
<td class="name">
|
|
2669
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/241465-le-grand-journal-de-canal/" class="film-title-name">Le Grand Journal de Canal+</a> <span class="film-title-info"></span></h3> </td>
|
|
2670
|
+
</tr>
|
|
2671
|
+
<tr>
|
|
2672
|
+
<td class="year">
|
|
2673
|
+
|
|
2674
|
+
</td>
|
|
2675
|
+
<td class="name">
|
|
2676
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/231940-on-air-with-ryan-seacrest/" class="film-title-name">On-Air with Ryan Seacrest</a> <span class="film-title-info"></span></h3> </td>
|
|
2677
|
+
</tr>
|
|
2678
|
+
<tr>
|
|
2679
|
+
<td class="year">
|
|
2680
|
+
|
|
2681
|
+
</td>
|
|
2682
|
+
<td class="name">
|
|
2683
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/279610-tavis-smiley/" class="film-title-name">Tavis Smiley</a> <span class="film-title-info"></span></h3> </td>
|
|
2684
|
+
</tr>
|
|
2685
|
+
<tr>
|
|
2686
|
+
<td class="year">
|
|
2687
|
+
|
|
2688
|
+
</td>
|
|
2689
|
+
<td class="name">
|
|
2690
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1099123-the-46th-annual-grammy-awards/" class="film-title-name">The 46th Annual Grammy Awards</a> <span class="film-title-info"></span></h3> </td>
|
|
2691
|
+
</tr>
|
|
2692
|
+
<tr>
|
|
2693
|
+
<td class="year">
|
|
2694
|
+
2003
|
|
2695
|
+
</td>
|
|
2696
|
+
<td class="name">
|
|
2697
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/30240-4pop/" class="film-title-name">4Pop</a> <span class="film-title-info"></span></h3> </td>
|
|
2698
|
+
</tr>
|
|
2699
|
+
<tr>
|
|
2700
|
+
<td class="year">
|
|
2701
|
+
|
|
2702
|
+
</td>
|
|
2703
|
+
<td class="name">
|
|
2704
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/118656-jimmy-kimmel-live/" class="film-title-name">Jimmy Kimmel Live!</a> <span class="film-title-info"></span></h3> </td>
|
|
2705
|
+
</tr>
|
|
2706
|
+
<tr>
|
|
2707
|
+
<td class="year">
|
|
2708
|
+
|
|
2709
|
+
</td>
|
|
2710
|
+
<td class="name">
|
|
2711
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/118155-real-time-with-bill-maher/" class="film-title-name">Real Time with Bill Maher</a> <span class="film-title-info"></span></h3> </td>
|
|
2712
|
+
</tr>
|
|
2713
|
+
<tr>
|
|
2714
|
+
<td class="year">
|
|
2715
|
+
|
|
2716
|
+
</td>
|
|
2717
|
+
<td class="name">
|
|
2718
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1465373-redbar/" class="film-title-name">Redbar</a> <span class="film-title-info"> - <span title="archivní záběry">a.z.</span></span></h3> </td>
|
|
2719
|
+
</tr>
|
|
2720
|
+
<tr>
|
|
2721
|
+
<td class="year">
|
|
2722
|
+
2002
|
|
2723
|
+
</td>
|
|
2724
|
+
<td class="name">
|
|
2725
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/107000-american-idol/" class="film-title-name">American Idol</a> <span class="film-title-info"></span></h3> </td>
|
|
2726
|
+
</tr>
|
|
2727
|
+
<tr>
|
|
2728
|
+
<td class="year">
|
|
2729
|
+
|
|
2730
|
+
</td>
|
|
2731
|
+
<td class="name">
|
|
2732
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/281563-eigo-de-shabera-night/" class="film-title-name">Eigo de shabera-night</a> <span class="film-title-info"></span></h3> </td>
|
|
2733
|
+
</tr>
|
|
2734
|
+
<tr>
|
|
2735
|
+
<td class="year">
|
|
2736
|
+
|
|
2737
|
+
</td>
|
|
2738
|
+
<td class="name">
|
|
2739
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/233351-last-call-with-carson-daly/" class="film-title-name">Last Call with Carson Daly</a> <span class="film-title-info"></span></h3> </td>
|
|
2740
|
+
</tr>
|
|
2741
|
+
<tr>
|
|
2742
|
+
<td class="year">
|
|
2743
|
+
2001
|
|
2744
|
+
</td>
|
|
2745
|
+
<td class="name">
|
|
2746
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/134006-friday-night-with-jonathan-ross/" class="film-title-name">Friday Night with Jonathan Ross</a> <span class="film-title-info"></span></h3> </td>
|
|
2747
|
+
</tr>
|
|
2748
|
+
<tr>
|
|
2749
|
+
<td class="year">
|
|
2750
|
+
1997
|
|
2751
|
+
</td>
|
|
2752
|
+
<td class="name">
|
|
2753
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/428229-tracks/" class="film-title-name">Tracks</a> <span class="film-title-info"></span></h3> </td>
|
|
2754
|
+
</tr>
|
|
2755
|
+
<tr>
|
|
2756
|
+
<td class="year">
|
|
2757
|
+
1996
|
|
2758
|
+
</td>
|
|
2759
|
+
<td class="name">
|
|
2760
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1272530-2nd-annual-screen-actors-guild-awards/" class="film-title-name">2nd Annual Screen Actors Guild Awards</a> <span class="film-title-info"></span></h3> </td>
|
|
2761
|
+
</tr>
|
|
2762
|
+
<tr>
|
|
2763
|
+
<td class="year">
|
|
2764
|
+
|
|
2765
|
+
</td>
|
|
2766
|
+
<td class="name">
|
|
2767
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1239098-el-magacine/" class="film-title-name">El magacine</a> <span class="film-title-info"></span></h3> </td>
|
|
2768
|
+
</tr>
|
|
2769
|
+
<tr>
|
|
2770
|
+
<td class="year">
|
|
2771
|
+
|
|
2772
|
+
</td>
|
|
2773
|
+
<td class="name">
|
|
2774
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1336367-mundo-vip/" class="film-title-name">Mundo VIP</a> <span class="film-title-info"></span></h3> </td>
|
|
2775
|
+
</tr>
|
|
2776
|
+
<tr>
|
|
2777
|
+
<td class="year">
|
|
2778
|
+
|
|
2779
|
+
</td>
|
|
2780
|
+
<td class="name">
|
|
2781
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/216372-smap-x-smap/" class="film-title-name">Smap x Smap</a> <span class="film-title-info"></span></h3> </td>
|
|
2782
|
+
</tr>
|
|
2783
|
+
<tr>
|
|
2784
|
+
<td class="year">
|
|
2785
|
+
|
|
2786
|
+
</td>
|
|
2787
|
+
<td class="name">
|
|
2788
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1193802-tfi-friday/" class="film-title-name">TFI Friday</a> <span class="film-title-info"></span></h3> </td>
|
|
2789
|
+
</tr>
|
|
2790
|
+
<tr>
|
|
2791
|
+
<td class="year">
|
|
2792
|
+
|
|
2793
|
+
</td>
|
|
2794
|
+
<td class="name">
|
|
2795
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/72574-the-american-film-institute-salute-to-clint-eastwood/" class="film-title-name">The American Film Institute Salute to Clint Eastwood</a> <span class="film-title-info"></span></h3> </td>
|
|
2796
|
+
</tr>
|
|
2797
|
+
<tr>
|
|
2798
|
+
<td class="year">
|
|
2799
|
+
1995
|
|
2800
|
+
</td>
|
|
2801
|
+
<td class="name">
|
|
2802
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1231791-1995-mtv-movie-awards/" class="film-title-name">1995 MTV Movie Awards</a> <span class="film-title-info"></span></h3> </td>
|
|
2803
|
+
</tr>
|
|
2804
|
+
<tr>
|
|
2805
|
+
<td class="year">
|
|
2806
|
+
|
|
2807
|
+
</td>
|
|
2808
|
+
<td class="name">
|
|
2809
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/453053-e-zive-z-cerveneho-koberce/" class="film-title-name">E! Živě z červeného koberce</a> <span class="film-title-info"></span></h3> </td>
|
|
2810
|
+
</tr>
|
|
2811
|
+
<tr>
|
|
2812
|
+
<td class="year">
|
|
2813
|
+
|
|
2814
|
+
</td>
|
|
2815
|
+
<td class="name">
|
|
2816
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1257771-the-52nd-annual-golden-globe-awards/" class="film-title-name">The 52nd Annual Golden Globe Awards</a> <span class="film-title-info"></span></h3> </td>
|
|
2817
|
+
</tr>
|
|
2818
|
+
<tr>
|
|
2819
|
+
<td class="year">
|
|
2820
|
+
1994
|
|
2821
|
+
</td>
|
|
2822
|
+
<td class="name">
|
|
2823
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/98047-extra/" class="film-title-name">Extra</a> <span class="film-title-info"></span></h3> </td>
|
|
2824
|
+
</tr>
|
|
2825
|
+
<tr>
|
|
2826
|
+
<td class="year">
|
|
2827
|
+
|
|
2828
|
+
</td>
|
|
2829
|
+
<td class="name">
|
|
2830
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/192041-howard-stern/" class="film-title-name">Howard Stern</a> <span class="film-title-info"></span></h3> </td>
|
|
2831
|
+
</tr>
|
|
2832
|
+
<tr>
|
|
2833
|
+
<td class="year">
|
|
2834
|
+
|
|
2835
|
+
</td>
|
|
2836
|
+
<td class="name">
|
|
2837
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1332013-wgn-morning-news/" class="film-title-name">WGN Morning News</a> <span class="film-title-info"></span></h3> </td>
|
|
2838
|
+
</tr>
|
|
2839
|
+
<tr>
|
|
2840
|
+
<td class="year">
|
|
2841
|
+
1993
|
|
2842
|
+
</td>
|
|
2843
|
+
<td class="name">
|
|
2844
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/75521-nocni-show-conana-o-briena/" class="film-title-name">Noční show Conana O'Briena</a> <span class="film-title-info"></span></h3> </td>
|
|
2845
|
+
</tr>
|
|
2846
|
+
<tr>
|
|
2847
|
+
<td class="year">
|
|
2848
|
+
|
|
2849
|
+
</td>
|
|
2850
|
+
<td class="name">
|
|
2851
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/150118-nocni-show-davida-lettermana/" class="film-title-name">Noční show Davida Lettermana</a> <span class="film-title-info"></span></h3> </td>
|
|
2852
|
+
</tr>
|
|
2853
|
+
<tr>
|
|
2854
|
+
<td class="year">
|
|
2855
|
+
1992
|
|
2856
|
+
</td>
|
|
2857
|
+
<td class="name">
|
|
2858
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/413801-gomorron/" class="film-title-name">Gomorron</a> <span class="film-title-info"></span></h3> </td>
|
|
2859
|
+
</tr>
|
|
2860
|
+
<tr>
|
|
2861
|
+
<td class="year">
|
|
2862
|
+
|
|
2863
|
+
</td>
|
|
2864
|
+
<td class="name">
|
|
2865
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/157303-nocni-show-jaye-lenoe/" class="film-title-name">Noční Show Jaye Lenoe</a> <span class="film-title-info"></span></h3> </td>
|
|
2866
|
+
</tr>
|
|
2867
|
+
<tr>
|
|
2868
|
+
<td class="year">
|
|
2869
|
+
1991
|
|
2870
|
+
</td>
|
|
2871
|
+
<td class="name">
|
|
2872
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/321869-charlie-rose/" class="film-title-name">Charlie Rose</a> <span class="film-title-info"></span></h3> </td>
|
|
2873
|
+
</tr>
|
|
2874
|
+
<tr>
|
|
2875
|
+
<td class="year">
|
|
2876
|
+
1985
|
|
2877
|
+
</td>
|
|
2878
|
+
<td class="name">
|
|
2879
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/253542-larry-king-live/" class="film-title-name">Larry King Live</a> <span class="film-title-info"></span></h3> </td>
|
|
2880
|
+
</tr>
|
|
2881
|
+
<tr>
|
|
2882
|
+
<td class="year">
|
|
2883
|
+
1984
|
|
2884
|
+
</td>
|
|
2885
|
+
<td class="name">
|
|
2886
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square blue"></i><a href="/film/390931-cinema-3/" class="film-title-name">Cinema 3</a> <span class="film-title-info"></span></h3> </td>
|
|
2887
|
+
</tr>
|
|
2888
|
+
<tr>
|
|
2889
|
+
<td class="year">
|
|
2890
|
+
1982
|
|
2891
|
+
</td>
|
|
2892
|
+
<td class="name">
|
|
2893
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/457110-waratte-iitomo/" class="film-title-name">Waratte iitomo!</a> <span class="film-title-info"></span></h3> </td>
|
|
2894
|
+
</tr>
|
|
2895
|
+
<tr>
|
|
2896
|
+
<td class="year">
|
|
2897
|
+
1981
|
|
2898
|
+
</td>
|
|
2899
|
+
<td class="name">
|
|
2900
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/98209-entertainment-tonight/" class="film-title-name">Entertainment Tonight</a> <span class="film-title-info"></span></h3> </td>
|
|
2901
|
+
</tr>
|
|
2902
|
+
<tr>
|
|
2903
|
+
<td class="year">
|
|
2904
|
+
1979
|
|
2905
|
+
</td>
|
|
2906
|
+
<td class="name">
|
|
2907
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square lightgrey"></i><a href="/film/1089648-cbs-news-sunday-morning/" class="film-title-name">CBS News Sunday Morning</a> <span class="film-title-info"></span></h3> </td>
|
|
2908
|
+
</tr>
|
|
2909
|
+
<tr>
|
|
2910
|
+
<td class="year">
|
|
2911
|
+
1976
|
|
2912
|
+
</td>
|
|
2913
|
+
<td class="name">
|
|
2914
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/422879-la-nuit-des-cesars/" class="film-title-name">La Nuit des Césars</a> <span class="film-title-info"></span></h3> </td>
|
|
2915
|
+
</tr>
|
|
2916
|
+
<tr>
|
|
2917
|
+
<td class="year">
|
|
2918
|
+
1975
|
|
2919
|
+
</td>
|
|
2920
|
+
<td class="name">
|
|
2921
|
+
<h3 class="film-title-nooverflow"><i class="icon icon-rounded-square red"></i><a href="/film/231480-saturday-night-live/" class="film-title-name">Saturday Night Live</a> <span class="film-title-info"></span></h3> </td>
|
|
2922
|
+
</tr>
|
|
2923
|
+
</tbody>
|
|
2924
|
+
</table>
|
|
2925
|
+
</div>
|
|
2926
|
+
</section>
|
|
2927
|
+
</div>
|
|
2928
|
+
|
|
2929
|
+
<section class="box box-borderless box-noborderbottom box-margintop creator-news-mobil">
|
|
2930
|
+
<header class="box-header">
|
|
2931
|
+
<h2>Související novinky</h2>
|
|
2932
|
+
<div class="box-header-action">
|
|
2933
|
+
<a href="/novinky/?creatorId=2120" class="button">více</a>
|
|
2934
|
+
</div>
|
|
2935
|
+
</header>
|
|
2936
|
+
<div class="box-content">
|
|
2937
|
+
<div class="newslist-content">
|
|
2938
|
+
<div class="newslist newslist-creator">
|
|
2939
|
+
<section class="newslist-item">
|
|
2940
|
+
<div class="box-content">
|
|
2941
|
+
<article class="article article-news article-news-60">
|
|
2942
|
+
<figure class="article-img">
|
|
2943
|
+
<a href="/novinky/9163-margaret-qualley-bude-viktorianska-psychopatka/">
|
|
2944
|
+
<img class="img" src="//image.pmgstatic.com/cache/resized/w100h132crop/files/images/news/article/169/455/169455955_v7t0m6.jpg" loading="lazy" width="100" height="132" srcset="//image.pmgstatic.com/cache/resized/w100h132crop/files/images/news/article/169/455/169455955_v7t0m6.jpg 1x, //image.pmgstatic.com/cache/resized/w200h264crop/files/images/news/article/169/455/169455955_v7t0m6.jpg 2x, //image.pmgstatic.com/cache/resized/w300h396crop/files/images/news/article/169/455/169455955_v7t0m6.jpg 3x" alt="Margaret Qualley bude viktoriánská psychopatka">
|
|
2945
|
+
</a>
|
|
2946
|
+
</figure>
|
|
2947
|
+
<header class="article-header">
|
|
2948
|
+
<h3>
|
|
2949
|
+
<a href="/novinky/9163-margaret-qualley-bude-viktorianska-psychopatka/">Margaret Qualley bude viktoriánská psychopatka</a>
|
|
2950
|
+
</h3>
|
|
2951
|
+
<div class="info">
|
|
2952
|
+
<span class="date">31.10.2024</span>
|
|
2953
|
+
</div>
|
|
2954
|
+
</header>
|
|
2955
|
+
<div class="article-news-content article-content-justify">
|
|
2956
|
+
<div class="article-news-textshort">
|
|
2957
|
+
<p>
|
|
2958
|
+
Jen málokterá mladá herečka má v současném Hollywoodu tak dobrou výchozí pozici jako Margaret Qualley. Svou kariéru odstartovala menší roličkou v buddy komedii Správní chlapi, posléze se…
|
|
2959
|
+
<span class="span-more-small">(<a href="/novinky/9163-margaret-qualley-bude-viktorianska-psychopatka/">více</a>)</span>
|
|
2960
|
+
</p>
|
|
2961
|
+
</div>
|
|
2962
|
+
</div>
|
|
2963
|
+
</article>
|
|
2964
|
+
</div>
|
|
2965
|
+
</section>
|
|
2966
|
+
|
|
2967
|
+
<section class="newslist-item">
|
|
2968
|
+
<div class="box-content">
|
|
2969
|
+
<article class="article article-news article-news-60">
|
|
2970
|
+
<figure class="article-img">
|
|
2971
|
+
<a href="/novinky/8991-zemrel-roger-corman/">
|
|
2972
|
+
<img class="img" src="//image.pmgstatic.com/cache/resized/w100h132crop/files/images/news/article/168/931/168931666_fk4dhs.jpg" loading="lazy" width="100" height="132" srcset="//image.pmgstatic.com/cache/resized/w100h132crop/files/images/news/article/168/931/168931666_fk4dhs.jpg 1x, //image.pmgstatic.com/cache/resized/w200h264crop/files/images/news/article/168/931/168931666_fk4dhs.jpg 2x, //image.pmgstatic.com/cache/resized/w300h396crop/files/images/news/article/168/931/168931666_fk4dhs.jpg 3x" alt="Zemřel Roger Corman">
|
|
2973
|
+
</a>
|
|
2974
|
+
</figure>
|
|
2975
|
+
<header class="article-header">
|
|
2976
|
+
<h3>
|
|
2977
|
+
<a href="/novinky/8991-zemrel-roger-corman/">Zemřel Roger Corman</a>
|
|
2978
|
+
</h3>
|
|
2979
|
+
<div class="info">
|
|
2980
|
+
<span class="date">12.05.2024</span>
|
|
2981
|
+
</div>
|
|
2982
|
+
</header>
|
|
2983
|
+
<div class="article-news-content article-content-justify">
|
|
2984
|
+
<div class="article-news-textshort">
|
|
2985
|
+
<p>
|
|
2986
|
+
Svět filmu přišel o jednu z ikon americké kinematografie, v kalifornské Santa Monice totiž zemřel legendární americký režisér, producent a scenárista Roger Corman. Bylo mu úctyhodných osmadevadesát…
|
|
2987
|
+
<span class="span-more-small">(<a href="/novinky/8991-zemrel-roger-corman/">více</a>)</span>
|
|
2988
|
+
</p>
|
|
2989
|
+
</div>
|
|
2990
|
+
</div>
|
|
2991
|
+
</article>
|
|
2992
|
+
</div>
|
|
2993
|
+
</section>
|
|
2994
|
+
|
|
2995
|
+
<section class="newslist-item">
|
|
2996
|
+
<div class="box-content">
|
|
2997
|
+
<article class="article article-news article-news-60">
|
|
2998
|
+
<figure class="article-img">
|
|
2999
|
+
<a href="/novinky/8962-tarantino-rusi-the-movie-critic-jako-svuj-10-film/">
|
|
3000
|
+
<img class="img" src="//image.pmgstatic.com/cache/resized/w100h132crop/files/images/news/article/168/849/168849977_b1g1e6.jpg" loading="lazy" width="100" height="132" srcset="//image.pmgstatic.com/cache/resized/w100h132crop/files/images/news/article/168/849/168849977_b1g1e6.jpg 1x, //image.pmgstatic.com/cache/resized/w200h264crop/files/images/news/article/168/849/168849977_b1g1e6.jpg 2x, //image.pmgstatic.com/cache/resized/w300h396crop/files/images/news/article/168/849/168849977_b1g1e6.jpg 3x" alt="Tarantino ruší The Movie Critic jako svůj 10. film">
|
|
3001
|
+
</a>
|
|
3002
|
+
</figure>
|
|
3003
|
+
<header class="article-header">
|
|
3004
|
+
<h3>
|
|
3005
|
+
<a href="/novinky/8962-tarantino-rusi-the-movie-critic-jako-svuj-10-film/">Tarantino ruší The Movie Critic jako svůj 10. film</a>
|
|
3006
|
+
</h3>
|
|
3007
|
+
<div class="info">
|
|
3008
|
+
<span class="date">18.04.2024</span>
|
|
3009
|
+
</div>
|
|
3010
|
+
</header>
|
|
3011
|
+
<div class="article-news-content article-content-justify">
|
|
3012
|
+
<div class="article-news-textshort">
|
|
3013
|
+
<p>
|
|
3014
|
+
Následující sdělení bude pro mnohé filmové diváky a zejména pak fanoušky tvorby Quentina Tarantina (Pulp Fiction: Historky z podsvětí, Hanebný pancharti) zřejmě dost pochmurné a možná i…
|
|
3015
|
+
<span class="span-more-small">(<a href="/novinky/8962-tarantino-rusi-the-movie-critic-jako-svuj-10-film/">více</a>)</span>
|
|
3016
|
+
</p>
|
|
3017
|
+
</div>
|
|
3018
|
+
</div>
|
|
3019
|
+
</article>
|
|
3020
|
+
</div>
|
|
3021
|
+
</section>
|
|
3022
|
+
|
|
3023
|
+
<section class="newslist-item">
|
|
3024
|
+
<div class="box-content">
|
|
3025
|
+
<article class="article article-news article-news-60">
|
|
3026
|
+
<figure class="article-img">
|
|
3027
|
+
<a href="/novinky/8914-tom-cruise-si-zahraje-ve-filmu-alejandra-g-inarritu/">
|
|
3028
|
+
<img class="img" src="//image.pmgstatic.com/cache/resized/w100h132crop/files/images/news/article/168/659/168659475_h1jmgq.jpg" loading="lazy" width="100" height="132" srcset="//image.pmgstatic.com/cache/resized/w100h132crop/files/images/news/article/168/659/168659475_h1jmgq.jpg 1x, //image.pmgstatic.com/cache/resized/w200h264crop/files/images/news/article/168/659/168659475_h1jmgq.jpg 2x, //image.pmgstatic.com/cache/resized/w300h396crop/files/images/news/article/168/659/168659475_h1jmgq.jpg 3x" alt="Tom Cruise si zahraje ve filmu Alejandra G. Iñárritu">
|
|
3029
|
+
</a>
|
|
3030
|
+
</figure>
|
|
3031
|
+
<header class="article-header">
|
|
3032
|
+
<h3>
|
|
3033
|
+
<a href="/novinky/8914-tom-cruise-si-zahraje-ve-filmu-alejandra-g-inarritu/">Tom Cruise si zahraje ve filmu Alejandra G. Iñárritu</a>
|
|
3034
|
+
</h3>
|
|
3035
|
+
<div class="info">
|
|
3036
|
+
<span class="date">23.02.2024</span>
|
|
3037
|
+
</div>
|
|
3038
|
+
</header>
|
|
3039
|
+
<div class="article-news-content article-content-justify">
|
|
3040
|
+
<div class="article-news-textshort">
|
|
3041
|
+
<p>
|
|
3042
|
+
Tom Cruise (Magnolia, Spalující touha), jehož mnozí nazývají poslední opravdovou velkou hollywoodskou hvězdou, se nedávno v ohromné dohodě upsal spolupráci s Warnery, pro něž by měl produkovat…
|
|
3043
|
+
<span class="span-more-small">(<a href="/novinky/8914-tom-cruise-si-zahraje-ve-filmu-alejandra-g-inarritu/">více</a>)</span>
|
|
3044
|
+
</p>
|
|
3045
|
+
</div>
|
|
3046
|
+
</div>
|
|
3047
|
+
</article>
|
|
3048
|
+
</div>
|
|
3049
|
+
</section>
|
|
3050
|
+
|
|
3051
|
+
<section class="newslist-item">
|
|
3052
|
+
<div class="box-content">
|
|
3053
|
+
<article class="article article-news article-news-60">
|
|
3054
|
+
<figure class="article-img">
|
|
3055
|
+
<a href="/novinky/8890-brad-pitt-krouzi-kolem-desate-tarantinovky/">
|
|
3056
|
+
<img class="img" src="//image.pmgstatic.com/cache/resized/w100h132crop/files/images/news/article/168/588/168588240_y55ucc.jpg" loading="lazy" width="100" height="132" srcset="//image.pmgstatic.com/cache/resized/w100h132crop/files/images/news/article/168/588/168588240_y55ucc.jpg 1x, //image.pmgstatic.com/cache/resized/w200h264crop/files/images/news/article/168/588/168588240_y55ucc.jpg 2x, //image.pmgstatic.com/cache/resized/w300h396crop/files/images/news/article/168/588/168588240_y55ucc.jpg 3x" alt="Brad Pitt krouží kolem desáté tarantinovky">
|
|
3057
|
+
</a>
|
|
3058
|
+
</figure>
|
|
3059
|
+
<header class="article-header">
|
|
3060
|
+
<h3>
|
|
3061
|
+
<a href="/novinky/8890-brad-pitt-krouzi-kolem-desate-tarantinovky/">Brad Pitt krouží kolem desáté tarantinovky</a>
|
|
3062
|
+
</h3>
|
|
3063
|
+
<div class="info">
|
|
3064
|
+
<span class="date">02.02.2024</span>
|
|
3065
|
+
</div>
|
|
3066
|
+
</header>
|
|
3067
|
+
<div class="article-news-content article-content-justify">
|
|
3068
|
+
<div class="article-news-textshort">
|
|
3069
|
+
<p>
|
|
3070
|
+
Co se týče současné tvorby oblíbeného režiséra Quentina Tarantina, už nějakou dobu víme, že jeho desátým a podle tvůrcových vlastních slov také finálním filmem má být chystaný snímek pojmenovaný The…
|
|
3071
|
+
<span class="span-more-small">(<a href="/novinky/8890-brad-pitt-krouzi-kolem-desate-tarantinovky/">více</a>)</span>
|
|
3072
|
+
</p>
|
|
3073
|
+
</div>
|
|
3074
|
+
</div>
|
|
3075
|
+
</article>
|
|
3076
|
+
</div>
|
|
3077
|
+
</section>
|
|
3078
|
+
|
|
3079
|
+
</div>
|
|
3080
|
+
</div>
|
|
3081
|
+
</div>
|
|
3082
|
+
</section>
|
|
3083
|
+
</div>
|
|
3084
|
+
|
|
3085
|
+
<div class="creator-aside">
|
|
3086
|
+
<div id="dropdown-control-panel" class="dropdown-content control-panel">
|
|
3087
|
+
<ul class="blue">
|
|
3088
|
+
<li id="snippet--publicControlMenuWatchlist">
|
|
3089
|
+
<a href="/registration-motivation/" rel="registrationMotivation">
|
|
3090
|
+
Přidat do Chci vidět
|
|
3091
|
+
</a>
|
|
3092
|
+
</li>
|
|
3093
|
+
<li id="snippet--publicControlMenuFanclub">
|
|
3094
|
+
<a href="/registration-motivation/" rel="registrationMotivation">
|
|
3095
|
+
Přidat do oblíbených
|
|
3096
|
+
</a>
|
|
3097
|
+
</li>
|
|
3098
|
+
</ul>
|
|
3099
|
+
<hr>
|
|
3100
|
+
<ul class="blue">
|
|
3101
|
+
<li>
|
|
3102
|
+
<a href="/registration-motivation/" rel="registrationMotivation">
|
|
3103
|
+
Přidat biografii
|
|
3104
|
+
</a>
|
|
3105
|
+
</li>
|
|
3106
|
+
<li>
|
|
3107
|
+
<a href="/registration-motivation/" rel="registrationMotivation">
|
|
3108
|
+
Přidat zajímavost
|
|
3109
|
+
</a>
|
|
3110
|
+
</li>
|
|
3111
|
+
<li>
|
|
3112
|
+
<a href="/registration-motivation/" rel="registrationMotivation">
|
|
3113
|
+
Přidat web
|
|
3114
|
+
</a>
|
|
3115
|
+
</li>
|
|
3116
|
+
<li>
|
|
3117
|
+
<a href="/registration-motivation/" rel="registrationMotivation">
|
|
3118
|
+
Přidat fotku
|
|
3119
|
+
</a>
|
|
3120
|
+
</li>
|
|
3121
|
+
</ul>
|
|
3122
|
+
</div>
|
|
3123
|
+
|
|
3124
|
+
<a href="#dropdown-control-panel" rel="dropdownContent" class="button button-control-panel button-control-panel-desktop" data-parent-class="creator-aside">
|
|
3125
|
+
<i class="icon icon-menu"></i><span>Ovládací panel</span>
|
|
3126
|
+
|
|
3127
|
+
</a>
|
|
3128
|
+
|
|
3129
|
+
<section class="fan-club">
|
|
3130
|
+
<div class="fan-club-header">
|
|
3131
|
+
<div class="ranking">
|
|
3132
|
+
<a href="/zebricky/reziseri/#highlight-3-2120" title="Umístění tvůrce v sekci žebříčky se zvýrazněním.">
|
|
3133
|
+
<i class="icon icon-thumb-up"></i> 1. nejoblíbenější režisér
|
|
3134
|
+
</a>
|
|
3135
|
+
</div>
|
|
3136
|
+
<div class="ranking">
|
|
3137
|
+
<a href="/zebricky/scenariste-kameramani-skladatele/#highlight-5-2120" title="Umístění tvůrce v sekci žebříčky se zvýrazněním.">
|
|
3138
|
+
<i class="icon icon-thumb-up"></i> 1. nejoblíbenější scenárista
|
|
3139
|
+
</a>
|
|
3140
|
+
</div>
|
|
3141
|
+
<div class="ranking">
|
|
3142
|
+
<a href="/zebricky/herci-a-herecky/?fromLeft=200#highlight-1-2120" title="Umístění tvůrce v sekci žebříčky se zvýrazněním.">
|
|
3143
|
+
<i class="icon icon-thumb-up"></i> 269. nejoblíbenější herec
|
|
3144
|
+
</a>
|
|
3145
|
+
</div>
|
|
3146
|
+
</div>
|
|
3147
|
+
<div class="fan-club-content">
|
|
3148
|
+
<h3>Fanklub</h3>
|
|
3149
|
+
<span>(39 150)</span>
|
|
3150
|
+
<ul>
|
|
3151
|
+
<li title="POMO (režisér)">
|
|
3152
|
+
<a href="/uzivatel/1-pomo/oblibene/reziseri/">
|
|
3153
|
+
POMO
|
|
3154
|
+
</a>
|
|
3155
|
+
<span>režisér</span>
|
|
3156
|
+
</li>
|
|
3157
|
+
<li title="POMO (scenárista)">
|
|
3158
|
+
<a href="/uzivatel/1-pomo/oblibene/scenariste/">
|
|
3159
|
+
POMO
|
|
3160
|
+
</a>
|
|
3161
|
+
<span>scenárista</span>
|
|
3162
|
+
</li>
|
|
3163
|
+
<li title="verbal (režisér)">
|
|
3164
|
+
<a href="/uzivatel/195357-verbal/oblibene/reziseri/">
|
|
3165
|
+
verbal
|
|
3166
|
+
</a>
|
|
3167
|
+
<span>režisér</span>
|
|
3168
|
+
</li>
|
|
3169
|
+
<li title="KevSpa (režisér)">
|
|
3170
|
+
<a href="/uzivatel/5-kevspa/oblibene/reziseri/">
|
|
3171
|
+
KevSpa
|
|
3172
|
+
</a>
|
|
3173
|
+
<span>režisér</span>
|
|
3174
|
+
</li>
|
|
3175
|
+
<li title="KevSpa (scenárista)">
|
|
3176
|
+
<a href="/uzivatel/5-kevspa/oblibene/scenariste/">
|
|
3177
|
+
KevSpa
|
|
3178
|
+
</a>
|
|
3179
|
+
<span>scenárista</span>
|
|
3180
|
+
</li>
|
|
3181
|
+
<li title="Douglas (scenárista)">
|
|
3182
|
+
<a href="/uzivatel/4-douglas/oblibene/scenariste/">
|
|
3183
|
+
Douglas
|
|
3184
|
+
</a>
|
|
3185
|
+
<span>scenárista</span>
|
|
3186
|
+
</li>
|
|
3187
|
+
<li title="kOCOUR (režisér)">
|
|
3188
|
+
<a href="/uzivatel/69-kocour/oblibene/reziseri/">
|
|
3189
|
+
kOCOUR
|
|
3190
|
+
</a>
|
|
3191
|
+
<span>režisér</span>
|
|
3192
|
+
</li>
|
|
3193
|
+
<li title="don corleone (režisér)">
|
|
3194
|
+
<a href="/uzivatel/11567-don-corleone/oblibene/reziseri/">
|
|
3195
|
+
don corleone
|
|
3196
|
+
</a>
|
|
3197
|
+
<span>režisér</span>
|
|
3198
|
+
</li>
|
|
3199
|
+
<li title="Tsunami_X (režisér)">
|
|
3200
|
+
<a href="/uzivatel/474-tsunami-x/oblibene/reziseri/">
|
|
3201
|
+
Tsunami_X
|
|
3202
|
+
</a>
|
|
3203
|
+
<span>režisér</span>
|
|
3204
|
+
</li>
|
|
3205
|
+
<li title="Tsunami_X (scenárista)">
|
|
3206
|
+
<a href="/uzivatel/474-tsunami-x/oblibene/scenariste/">
|
|
3207
|
+
Tsunami_X
|
|
3208
|
+
</a>
|
|
3209
|
+
<span>scenárista</span>
|
|
3210
|
+
</li>
|
|
3211
|
+
<li title="Blizzard (režisér)">
|
|
3212
|
+
<a href="/uzivatel/1537-blizzard/oblibene/reziseri/">
|
|
3213
|
+
Blizzard
|
|
3214
|
+
</a>
|
|
3215
|
+
<span>režisér</span>
|
|
3216
|
+
</li>
|
|
3217
|
+
<li title="Matty (scenárista)">
|
|
3218
|
+
<a href="/uzivatel/2008-matty/oblibene/scenariste/">
|
|
3219
|
+
Matty
|
|
3220
|
+
</a>
|
|
3221
|
+
<span>scenárista</span>
|
|
3222
|
+
</li>
|
|
3223
|
+
<li title="Enšpígl (režisér)">
|
|
3224
|
+
<a href="/uzivatel/6811-enspigl/oblibene/reziseri/">
|
|
3225
|
+
Enšpígl
|
|
3226
|
+
</a>
|
|
3227
|
+
<span>režisér</span>
|
|
3228
|
+
</li>
|
|
3229
|
+
<li title="Radyo (režisér)">
|
|
3230
|
+
<a href="/uzivatel/151-radyo/oblibene/reziseri/">
|
|
3231
|
+
Radyo
|
|
3232
|
+
</a>
|
|
3233
|
+
<span>režisér</span>
|
|
3234
|
+
</li>
|
|
3235
|
+
<li title="T2 (scenárista)">
|
|
3236
|
+
<a href="/uzivatel/12308-t2/oblibene/scenariste/">
|
|
3237
|
+
T2
|
|
3238
|
+
</a>
|
|
3239
|
+
<span>scenárista</span>
|
|
3240
|
+
</li>
|
|
3241
|
+
<li title="Renton (režisér)">
|
|
3242
|
+
<a href="/uzivatel/3399-renton/oblibene/reziseri/">
|
|
3243
|
+
Renton
|
|
3244
|
+
</a>
|
|
3245
|
+
<span>režisér</span>
|
|
3246
|
+
</li>
|
|
3247
|
+
<li title="RedAK (režisér)">
|
|
3248
|
+
<a href="/uzivatel/447317-redak/oblibene/reziseri/">
|
|
3249
|
+
RedAK
|
|
3250
|
+
</a>
|
|
3251
|
+
<span>režisér</span>
|
|
3252
|
+
</li>
|
|
3253
|
+
<li title="Faye (režisér)">
|
|
3254
|
+
<a href="/uzivatel/6356-faye/oblibene/reziseri/">
|
|
3255
|
+
Faye
|
|
3256
|
+
</a>
|
|
3257
|
+
<span>režisér</span>
|
|
3258
|
+
</li>
|
|
3259
|
+
<li title="woody (režisér)">
|
|
3260
|
+
<a href="/uzivatel/363-woody/oblibene/reziseri/">
|
|
3261
|
+
woody
|
|
3262
|
+
</a>
|
|
3263
|
+
<span>režisér</span>
|
|
3264
|
+
</li>
|
|
3265
|
+
<li title="woody (scenárista)">
|
|
3266
|
+
<a href="/uzivatel/363-woody/oblibene/scenariste/">
|
|
3267
|
+
woody
|
|
3268
|
+
</a>
|
|
3269
|
+
<span>scenárista</span>
|
|
3270
|
+
</li>
|
|
3271
|
+
</ul>
|
|
3272
|
+
<div class="box-more-bar">
|
|
3273
|
+
<div class="pagination">
|
|
3274
|
+
<a href="/tvurce/2120-quentin-tarantino/prehled/?pageFanclub=0" class="page-prev disabled">
|
|
3275
|
+
<span class="pagination-btn-reader">předchozí</span>
|
|
3276
|
+
</a>
|
|
3277
|
+
1 - 20
|
|
3278
|
+
<a href="/tvurce/2120-quentin-tarantino/prehled/?pageFanclub=2" class="page-next">
|
|
3279
|
+
<span class="pagination-btn-reader">další</span>
|
|
3280
|
+
</a>
|
|
3281
|
+
</div>
|
|
3282
|
+
</div>
|
|
3283
|
+
</div>
|
|
3284
|
+
</section>
|
|
3285
|
+
|
|
3286
|
+
<div class="links">
|
|
3287
|
+
<a href="http://www.tarantino.info/" title="tarantino.info (fandovský web)" class="website"><i class="icon icon-globe-circle"></i><span>tarantino.info</span></a>
|
|
3288
|
+
<a href="http://www.qtarantino.cz/" title="qtarantino.cz (fandovský web)" class="website"><i class="icon icon-globe-circle"></i><span>qtarantino.cz</span></a>
|
|
3289
|
+
</div>
|
|
3290
|
+
|
|
3291
|
+
<div class="box-buttons">
|
|
3292
|
+
</div>
|
|
3293
|
+
|
|
3294
|
+
</div>
|
|
3295
|
+
</div>
|
|
3296
|
+
|
|
3297
|
+
<div id="bottom-banner">
|
|
3298
|
+
<div class="box box-banner box-bannercenter box-banner-spacetop">
|
|
3299
|
+
<p class="box-banner-text-center">Reklama</p>
|
|
3300
|
+
<div class="bottom-banner-content">
|
|
3301
|
+
<div id="billboard" class="ad-pmg" style="height: 315px;"></div>
|
|
3302
|
+
</div>
|
|
3303
|
+
</div>
|
|
3304
|
+
<div class="box box-banner-mobile box-banner-mobile-padding">
|
|
3305
|
+
<p class="box-banner-text">Reklama</p>
|
|
3306
|
+
<div id="mobile_billboard" class="ad-pmg" style="height: 300px;"></div>
|
|
3307
|
+
</div>
|
|
3308
|
+
</div>
|
|
3309
|
+
</div>
|
|
3310
|
+
</div>
|
|
3311
|
+
|
|
3312
|
+
<footer class="page-footer">
|
|
3313
|
+
<div class="footer-content">
|
|
3314
|
+
<div class="footer-list">
|
|
3315
|
+
<div class="footer-list-size">
|
|
3316
|
+
<div class="linklist languages">
|
|
3317
|
+
<div class="timezones">
|
|
3318
|
+
<h3>Výběr časového pásma</h3>
|
|
3319
|
+
<form action="/tvurce/2120-quentin-tarantino/prehled/" method="post" id="frm-timezoneForm">
|
|
3320
|
+
<select name="timezone" data-auto-submit-form="true" id="frm-timezoneForm-timezone"><option value="Africa/Abidjan">Africa/Abidjan</option><option value="Africa/Accra">Africa/Accra</option><option value="Africa/Addis_Ababa">Africa/Addis Ababa</option><option value="Africa/Algiers">Africa/Algiers</option><option value="Africa/Asmara">Africa/Asmara</option><option value="Africa/Bamako">Africa/Bamako</option><option value="Africa/Bangui">Africa/Bangui</option><option value="Africa/Banjul">Africa/Banjul</option><option value="Africa/Bissau">Africa/Bissau</option><option value="Africa/Blantyre">Africa/Blantyre</option><option value="Africa/Brazzaville">Africa/Brazzaville</option><option value="Africa/Bujumbura">Africa/Bujumbura</option><option value="Africa/Cairo">Africa/Cairo</option><option value="Africa/Casablanca">Africa/Casablanca</option><option value="Africa/Ceuta">Africa/Ceuta</option><option value="Africa/Conakry">Africa/Conakry</option><option value="Africa/Dakar">Africa/Dakar</option><option value="Africa/Dar_es_Salaam">Africa/Dar es Salaam</option><option value="Africa/Djibouti">Africa/Djibouti</option><option value="Africa/Douala">Africa/Douala</option><option value="Africa/El_Aaiun">Africa/El Aaiun</option><option value="Africa/Freetown">Africa/Freetown</option><option value="Africa/Gaborone">Africa/Gaborone</option><option value="Africa/Harare">Africa/Harare</option><option value="Africa/Johannesburg">Africa/Johannesburg</option><option value="Africa/Juba">Africa/Juba</option><option value="Africa/Kampala">Africa/Kampala</option><option value="Africa/Khartoum">Africa/Khartoum</option><option value="Africa/Kigali">Africa/Kigali</option><option value="Africa/Kinshasa">Africa/Kinshasa</option><option value="Africa/Lagos">Africa/Lagos</option><option value="Africa/Libreville">Africa/Libreville</option><option value="Africa/Lome">Africa/Lome</option><option value="Africa/Luanda">Africa/Luanda</option><option value="Africa/Lubumbashi">Africa/Lubumbashi</option><option value="Africa/Lusaka">Africa/Lusaka</option><option value="Africa/Malabo">Africa/Malabo</option><option value="Africa/Maputo">Africa/Maputo</option><option value="Africa/Maseru">Africa/Maseru</option><option value="Africa/Mbabane">Africa/Mbabane</option><option value="Africa/Mogadishu">Africa/Mogadishu</option><option value="Africa/Monrovia">Africa/Monrovia</option><option value="Africa/Nairobi">Africa/Nairobi</option><option value="Africa/Ndjamena">Africa/Ndjamena</option><option value="Africa/Niamey">Africa/Niamey</option><option value="Africa/Nouakchott">Africa/Nouakchott</option><option value="Africa/Ouagadougou">Africa/Ouagadougou</option><option value="Africa/Porto-Novo">Africa/Porto-Novo</option><option value="Africa/Sao_Tome">Africa/Sao Tome</option><option value="Africa/Tripoli">Africa/Tripoli</option><option value="Africa/Tunis">Africa/Tunis</option><option value="Africa/Windhoek">Africa/Windhoek</option><option value="America/Adak">America/Adak</option><option value="America/Anchorage">America/Anchorage</option><option value="America/Anguilla">America/Anguilla</option><option value="America/Antigua">America/Antigua</option><option value="America/Araguaina">America/Araguaina</option><option value="America/Argentina/Buenos_Aires">America/Argentina/Buenos Aires</option><option value="America/Argentina/Catamarca">America/Argentina/Catamarca</option><option value="America/Argentina/Cordoba">America/Argentina/Cordoba</option><option value="America/Argentina/Jujuy">America/Argentina/Jujuy</option><option value="America/Argentina/La_Rioja">America/Argentina/La Rioja</option><option value="America/Argentina/Mendoza">America/Argentina/Mendoza</option><option value="America/Argentina/Rio_Gallegos">America/Argentina/Rio Gallegos</option><option value="America/Argentina/Salta">America/Argentina/Salta</option><option value="America/Argentina/San_Juan">America/Argentina/San Juan</option><option value="America/Argentina/San_Luis">America/Argentina/San Luis</option><option value="America/Argentina/Tucuman">America/Argentina/Tucuman</option><option value="America/Argentina/Ushuaia">America/Argentina/Ushuaia</option><option value="America/Aruba">America/Aruba</option><option value="America/Asuncion">America/Asuncion</option><option value="America/Atikokan">America/Atikokan</option><option value="America/Bahia">America/Bahia</option><option value="America/Bahia_Banderas">America/Bahia Banderas</option><option value="America/Barbados">America/Barbados</option><option value="America/Belem">America/Belem</option><option value="America/Belize">America/Belize</option><option value="America/Blanc-Sablon">America/Blanc-Sablon</option><option value="America/Boa_Vista">America/Boa Vista</option><option value="America/Bogota">America/Bogota</option><option value="America/Boise">America/Boise</option><option value="America/Cambridge_Bay">America/Cambridge Bay</option><option value="America/Campo_Grande">America/Campo Grande</option><option value="America/Cancun">America/Cancun</option><option value="America/Caracas">America/Caracas</option><option value="America/Cayenne">America/Cayenne</option><option value="America/Cayman">America/Cayman</option><option value="America/Chicago">America/Chicago</option><option value="America/Chihuahua">America/Chihuahua</option><option value="America/Ciudad_Juarez">America/Ciudad Juarez</option><option value="America/Costa_Rica">America/Costa Rica</option><option value="America/Creston">America/Creston</option><option value="America/Cuiaba">America/Cuiaba</option><option value="America/Curacao">America/Curacao</option><option value="America/Dawson">America/Dawson</option><option value="America/Dawson_Creek">America/Dawson Creek</option><option value="America/Denver">America/Denver</option><option value="America/Detroit">America/Detroit</option><option value="America/Dominica">America/Dominica</option><option value="America/Edmonton">America/Edmonton</option><option value="America/Eirunepe">America/Eirunepe</option><option value="America/El_Salvador">America/El Salvador</option><option value="America/Fort_Nelson">America/Fort Nelson</option><option value="America/Fortaleza">America/Fortaleza</option><option value="America/Glace_Bay">America/Glace Bay</option><option value="America/Goose_Bay">America/Goose Bay</option><option value="America/Grand_Turk">America/Grand Turk</option><option value="America/Grenada">America/Grenada</option><option value="America/Guadeloupe">America/Guadeloupe</option><option value="America/Guatemala">America/Guatemala</option><option value="America/Guayaquil">America/Guayaquil</option><option value="America/Guyana">America/Guyana</option><option value="America/Halifax">America/Halifax</option><option value="America/Havana">America/Havana</option><option value="America/Hermosillo">America/Hermosillo</option><option value="America/Indiana/Indianapolis">America/Indiana/Indianapolis</option><option value="America/Indiana/Knox">America/Indiana/Knox</option><option value="America/Indiana/Marengo">America/Indiana/Marengo</option><option value="America/Indiana/Petersburg">America/Indiana/Petersburg</option><option value="America/Indiana/Tell_City">America/Indiana/Tell City</option><option value="America/Indiana/Vevay">America/Indiana/Vevay</option><option value="America/Indiana/Vincennes">America/Indiana/Vincennes</option><option value="America/Indiana/Winamac">America/Indiana/Winamac</option><option value="America/Inuvik">America/Inuvik</option><option value="America/Iqaluit">America/Iqaluit</option><option value="America/Jamaica">America/Jamaica</option><option value="America/Juneau">America/Juneau</option><option value="America/Kentucky/Louisville">America/Kentucky/Louisville</option><option value="America/Kentucky/Monticello">America/Kentucky/Monticello</option><option value="America/Kralendijk">America/Kralendijk</option><option value="America/La_Paz">America/La Paz</option><option value="America/Lima">America/Lima</option><option value="America/Los_Angeles">America/Los Angeles</option><option value="America/Lower_Princes">America/Lower Princes</option><option value="America/Maceio">America/Maceio</option><option value="America/Managua">America/Managua</option><option value="America/Manaus">America/Manaus</option><option value="America/Marigot">America/Marigot</option><option value="America/Martinique">America/Martinique</option><option value="America/Matamoros">America/Matamoros</option><option value="America/Mazatlan">America/Mazatlan</option><option value="America/Menominee">America/Menominee</option><option value="America/Merida">America/Merida</option><option value="America/Metlakatla">America/Metlakatla</option><option value="America/Mexico_City">America/Mexico City</option><option value="America/Miquelon">America/Miquelon</option><option value="America/Moncton">America/Moncton</option><option value="America/Monterrey">America/Monterrey</option><option value="America/Montevideo">America/Montevideo</option><option value="America/Montserrat">America/Montserrat</option><option value="America/Nassau">America/Nassau</option><option value="America/New_York">America/New York</option><option value="America/Nome">America/Nome</option><option value="America/North_Dakota/Beulah">America/North Dakota/Beulah</option><option value="America/North_Dakota/Center">America/North Dakota/Center</option><option value="America/North_Dakota/New_Salem">America/North Dakota/New Salem</option><option value="America/Nuuk">America/Nuuk</option><option value="America/Ojinaga">America/Ojinaga</option><option value="America/Panama">America/Panama</option><option value="America/Paramaribo">America/Paramaribo</option><option value="America/Phoenix">America/Phoenix</option><option value="America/Port-au-Prince">America/Port-au-Prince</option><option value="America/Port_of_Spain">America/Port of_Spain</option><option value="America/Porto_Velho">America/Porto Velho</option><option value="America/Puerto_Rico">America/Puerto Rico</option><option value="America/Punta_Arenas">America/Punta Arenas</option><option value="America/Rankin_Inlet">America/Rankin Inlet</option><option value="America/Recife">America/Recife</option><option value="America/Regina">America/Regina</option><option value="America/Resolute">America/Resolute</option><option value="America/Rio_Branco">America/Rio Branco</option><option value="America/Santarem">America/Santarem</option><option value="America/Santiago">America/Santiago</option><option value="America/Santo_Domingo">America/Santo Domingo</option><option value="America/Sao_Paulo">America/Sao Paulo</option><option value="America/Scoresbysund">America/Scoresbysund</option><option value="America/Sitka">America/Sitka</option><option value="America/St_Barthelemy">America/St Barthelemy</option><option value="America/St_Johns">America/St. John's</option><option value="America/St_Kitts">America/St Kitts</option><option value="America/St_Lucia">America/St Lucia</option><option value="America/St_Thomas">America/St Thomas</option><option value="America/St_Vincent">America/St Vincent</option><option value="America/Swift_Current">America/Swift Current</option><option value="America/Tegucigalpa">America/Tegucigalpa</option><option value="America/Thule">America/Thule</option><option value="America/Tijuana">America/Tijuana</option><option value="America/Toronto">America/Toronto</option><option value="America/Tortola">America/Tortola</option><option value="America/Vancouver">America/Vancouver</option><option value="America/Whitehorse">America/Whitehorse</option><option value="America/Winnipeg">America/Winnipeg</option><option value="America/Yakutat">America/Yakutat</option><option value="America/Yellowknife">America/Yellowknife</option><option value="Antarctica/Syowa">Antarctica/Syowa</option><option value="Arctic/Longyearbyen">Arctic/Longyearbyen</option><option value="Asia/Aden">Asia/Aden</option><option value="Asia/Almaty">Asia/Almaty</option><option value="Asia/Amman">Asia/Amman</option><option value="Asia/Anadyr">Asia/Anadyr</option><option value="Asia/Aqtau">Asia/Aqtau</option><option value="Asia/Aqtobe">Asia/Aqtobe</option><option value="Asia/Ashgabat">Asia/Ashgabat</option><option value="Asia/Atyrau">Asia/Atyrau</option><option value="Asia/Baghdad">Asia/Baghdad</option><option value="Asia/Bahrain">Asia/Bahrain</option><option value="Asia/Baku">Asia/Baku</option><option value="Asia/Bangkok">Asia/Bangkok</option><option value="Asia/Barnaul">Asia/Barnaul</option><option value="Asia/Beirut">Asia/Beirut</option><option value="Asia/Bishkek">Asia/Bishkek</option><option value="Asia/Brunei">Asia/Brunei</option><option value="Asia/Chita">Asia/Chita</option><option value="Asia/Choibalsan">Asia/Choibalsan</option><option value="Asia/Colombo">Asia/Colombo</option><option value="Asia/Damascus">Asia/Damascus</option><option value="Asia/Dhaka">Asia/Dhaka</option><option value="Asia/Dili">Asia/Dili</option><option value="Asia/Dubai">Asia/Dubai</option><option value="Asia/Dushanbe">Asia/Dushanbe</option><option value="Asia/Famagusta">Asia/Famagusta</option><option value="Asia/Gaza">Asia/Gaza</option><option value="Asia/Hebron">Asia/Hebron</option><option value="Asia/Ho_Chi_Minh">Asia/Ho Chi_Minh</option><option value="Asia/Hong_Kong">Asia/Hong_Kong</option><option value="Asia/Hovd">Asia/Hovd</option><option value="Asia/Irkutsk">Asia/Irkutsk</option><option value="Asia/Jakarta">Asia/Jakarta</option><option value="Asia/Jayapura">Asia/Jayapura</option><option value="Asia/Jerusalem">Asia/Jerusalem</option><option value="Asia/Kabul">Asia/Kabul</option><option value="Asia/Kamchatka">Asia/Kamchatka</option><option value="Asia/Karachi">Asia/Karachi</option><option value="Asia/Kathmandu">Asia/Kathmandu</option><option value="Asia/Kolkata">Asia/Kolkata</option><option value="Asia/Krasnoyarsk">Asia/Krasnoyarsk</option><option value="Asia/Kuala_Lumpur">Asia/Kuala_Lumpur</option><option value="Asia/Kuching">Asia/Kuching</option><option value="Asia/Kuwait">Asia/Kuwait</option><option value="Asia/Macau">Asia/Macau</option><option value="Asia/Magadan">Asia/Magadan</option><option value="Asia/Makassar">Asia/Makassar</option><option value="Asia/Manila">Asia/Manila</option><option value="Asia/Muscat">Asia/Muscat</option><option value="Asia/Nicosia">Asia/Nicosia</option><option value="Asia/Novokuznetsk">Asia/Novokuznetsk</option><option value="Asia/Novosibirsk">Asia/Novosibirsk</option><option value="Asia/Omsk">Asia/Omsk</option><option value="Asia/Oral">Asia/Oral</option><option value="Asia/Phnom_Penh">Asia/Phnom_Penh</option><option value="Asia/Pontianak">Asia/Pontianak</option><option value="Asia/Pyongyang">Asia/Pyongyang</option><option value="Asia/Qatar">Asia/Qatar</option><option value="Asia/Qostanay">Asia/Qostanay</option><option value="Asia/Qyzylorda">Asia/Qyzylorda</option><option value="Asia/Riyadh">Asia/Riyadh</option><option value="Asia/Sakhalin">Asia/Sakhalin</option><option value="Asia/Samarkand">Asia/Samarkand</option><option value="Asia/Seoul">Asia/Seoul</option><option value="Asia/Shanghai">Asia/Shanghai</option><option value="Asia/Singapore">Asia/Singapore</option><option value="Asia/Taipei">Asia/Taipei</option><option value="Asia/Tashkent">Asia/Tashkent</option><option value="Asia/Tbilisi">Asia/Tbilisi</option><option value="Asia/Tehran">Asia/Tehran</option><option value="Asia/Thimphu">Asia/Thimphu</option><option value="Asia/Tokyo">Asia/Tokyo</option><option value="Asia/Tomsk">Asia/Tomsk</option><option value="Asia/Ulaanbaatar">Asia/Ulaanbaatar</option><option value="Asia/Urumqi">Asia/Urumqi</option><option value="Asia/Vientiane">Asia/Vientiane</option><option value="Asia/Vladivostok">Asia/Vladivostok</option><option value="Asia/Yakutsk">Asia/Yakutsk</option><option value="Asia/Yangon">Asia/Yangon</option><option value="Asia/Yekaterinburg">Asia/Yekaterinburg</option><option value="Asia/Yerevan">Asia/Yerevan</option><option value="Atlantic/Azores">Atlantic/Azores</option><option value="Atlantic/Bermuda">Atlantic/Bermuda</option><option value="Atlantic/Canary">Atlantic/Canary</option><option value="Atlantic/Cape_Verde">Atlantic/Cape Verde</option><option value="Atlantic/Faroe">Atlantic/Faroe</option><option value="Atlantic/Madeira">Atlantic/Madeira</option><option value="Atlantic/Reykjavik">Atlantic/Reykjavik</option><option value="Atlantic/South_Georgia">Atlantic/South Georgia</option><option value="Atlantic/St_Helena">Atlantic/St Helena</option><option value="Atlantic/Stanley">Atlantic/Stanley</option><option value="Australia/Adelaide">Australia/Adelaide</option><option value="Australia/Brisbane">Australia/Brisbane</option><option value="Australia/Broken_Hill">Australia/Broken Hill</option><option value="Australia/Darwin">Australia/Darwin</option><option value="Australia/Eucla">Australia/Eucla</option><option value="Australia/Hobart">Australia/Hobart</option><option value="Australia/Lindeman">Australia/Lindeman</option><option value="Australia/Lord_Howe">Australia/Lord Howe</option><option value="Australia/Melbourne">Australia/Melbourne</option><option value="Australia/Perth">Australia/Perth</option><option value="Australia/Sydney">Australia/Sydney</option><option value="Europe/Amsterdam">Europe/Amsterdam</option><option value="Europe/Andorra">Europe/Andorra</option><option value="Europe/Astrakhan">Europe/Astrakhan</option><option value="Europe/Athens">Europe/Athens</option><option value="Europe/Belgrade">Europe/Belgrade</option><option value="Europe/Berlin">Europe/Berlin</option><option value="Europe/Bratislava">Europe/Bratislava</option><option value="Europe/Brussels">Europe/Brussels</option><option value="Europe/Bucharest">Europe/Bucharest</option><option value="Europe/Budapest">Europe/Budapest</option><option value="Europe/Chisinau">Europe/Chisinau</option><option value="Europe/Copenhagen">Europe/Copenhagen</option><option value="Europe/Dublin">Europe/Dublin</option><option value="Europe/Gibraltar">Europe/Gibraltar</option><option value="Europe/Guernsey">Europe/Guernsey</option><option value="Europe/Helsinki">Europe/Helsinki</option><option value="Europe/Isle_of_Man">Europe/Isle of Man</option><option value="Europe/Istanbul">Europe/Istanbul</option><option value="Europe/Jersey">Europe/Jersey</option><option value="Europe/Kaliningrad">Europe/Kaliningrad</option><option value="Europe/Kirov">Europe/Kirov</option><option value="Europe/Kyiv">Europe/Kyiv</option><option value="Europe/Lisbon">Europe/Lisbon</option><option value="Europe/Ljubljana">Europe/Ljubljana</option><option value="Europe/London">Europe/London</option><option value="Europe/Luxembourg">Europe/Luxembourg</option><option value="Europe/Madrid">Europe/Madrid</option><option value="Europe/Malta">Europe/Malta</option><option value="Europe/Mariehamn">Europe/Mariehamn</option><option value="Europe/Minsk">Europe/Minsk</option><option value="Europe/Monaco">Europe/Monaco</option><option value="Europe/Moscow">Europe/Moscow</option><option value="Europe/Oslo">Europe/Oslo</option><option value="Europe/Paris">Europe/Paris</option><option value="Europe/Podgorica">Europe/Podgorica</option><option value="Europe/Prague" selected>Europe/Prague</option><option value="Europe/Riga">Europe/Riga</option><option value="Europe/Rome">Europe/Rome</option><option value="Europe/Samara">Europe/Samara</option><option value="Europe/San_Marino">Europe/San Marino</option><option value="Europe/Sarajevo">Europe/Sarajevo</option><option value="Europe/Saratov">Europe/Saratov</option><option value="Europe/Simferopol">Europe/Simferopol</option><option value="Europe/Skopje">Europe/Skopje</option><option value="Europe/Sofia">Europe/Sofia</option><option value="Europe/Stockholm">Europe/Stockholm</option><option value="Europe/Tallinn">Europe/Tallinn</option><option value="Europe/Tirane">Europe/Tirane</option><option value="Europe/Ulyanovsk">Europe/Ulyanovsk</option><option value="Europe/Vaduz">Europe/Vaduz</option><option value="Europe/Vatican">Europe/Vatican</option><option value="Europe/Vienna">Europe/Vienna</option><option value="Europe/Vilnius">Europe/Vilnius</option><option value="Europe/Volgograd">Europe/Volgograd</option><option value="Europe/Warsaw">Europe/Warsaw</option><option value="Europe/Zagreb">Europe/Zagreb</option><option value="Europe/Zurich">Europe/Zurich</option><option value="Indian/Antananarivo">Indian/Antananarivo</option><option value="Indian/Chagos">Indian/Chagos</option><option value="Indian/Christmas">Indian/Christmas</option><option value="Indian/Cocos">Indian/Cocos</option><option value="Indian/Comoro">Indian/Comoro</option><option value="Indian/Kerguelen">Indian/Kerguelen</option><option value="Indian/Mahe">Indian/Mahe</option><option value="Indian/Maldives">Indian/Maldives</option><option value="Indian/Mauritius">Indian/Mauritius</option><option value="Indian/Mayotte">Indian/Mayotte</option><option value="Indian/Reunion">Indian/Reunion</option><option value="Pacific/Apia">Pacific/Apia</option><option value="Pacific/Auckland">Pacific/Auckland</option><option value="Pacific/Bougainville">Pacific/Bougainville</option><option value="Pacific/Chatham">Pacific/Chatham</option><option value="Pacific/Chuuk">Pacific/Chuuk</option><option value="Pacific/Easter">Pacific/Easter</option><option value="Pacific/Efate">Pacific/Efate</option><option value="Pacific/Fakaofo">Pacific/Fakaofo</option><option value="Pacific/Fiji">Pacific/Fiji</option><option value="Pacific/Funafuti">Pacific/Funafuti</option><option value="Pacific/Galapagos">Pacific/Galapagos</option><option value="Pacific/Gambier">Pacific/Gambier</option><option value="Pacific/Guadalcanal">Pacific/Guadalcanal</option><option value="Pacific/Guam">Pacific/Guam</option><option value="Pacific/Honolulu">Pacific/Honolulu</option><option value="Pacific/Kanton">Pacific/Kanton</option><option value="Pacific/Kiritimati">Pacific/Kiritimati</option><option value="Pacific/Kosrae">Pacific/Kosrae</option><option value="Pacific/Kwajalein">Pacific/Kwajalein</option><option value="Pacific/Majuro">Pacific/Majuro</option><option value="Pacific/Marquesas">Pacific/Marquesas</option><option value="Pacific/Midway">Pacific/Midway</option><option value="Pacific/Nauru">Pacific/Nauru</option><option value="Pacific/Niue">Pacific/Niue</option><option value="Pacific/Norfolk">Pacific/Norfolk</option><option value="Pacific/Noumea">Pacific/Noumea</option><option value="Pacific/Pago_Pago">Pacific/Pago Pago</option><option value="Pacific/Palau">Pacific/Palau</option><option value="Pacific/Pitcairn">Pacific/Pitcairn</option><option value="Pacific/Pohnpei">Pacific/Pohnpei</option><option value="Pacific/Port_Moresby">Pacific/Port Moresby</option><option value="Pacific/Rarotonga">Pacific/Rarotonga</option><option value="Pacific/Saipan">Pacific/Saipan</option><option value="Pacific/Tahiti">Pacific/Tahiti</option><option value="Pacific/Tarawa">Pacific/Tarawa</option><option value="Pacific/Tongatapu">Pacific/Tongatapu</option><option value="Pacific/Wake">Pacific/Wake</option><option value="Pacific/Wallis">Pacific/Wallis</option></select>
|
|
3321
|
+
<input type="hidden" name="_do" value="timezoneForm-submit"></form>
|
|
3322
|
+
<p>Detekovali jsme, že jsi v časové zóně Europe/Chisinau. <a href="/tvurce/2120-quentin-tarantino/prehled/?value=Europe%2FChisinau&do=changeHomeTimezone">Změnit časovou zónu</a></p>
|
|
3323
|
+
</div>
|
|
3324
|
+
<div class="theme-switcher">
|
|
3325
|
+
<a id="switch-to-dark-mode" href="javascript:void(0);">
|
|
3326
|
+
<span>
|
|
3327
|
+
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20.354 15.354A9 9 0 018.646 3.646 9.003 9.003 0 0012 21a9.003 9.003 0 008.354-5.646z"></path></svg>
|
|
3328
|
+
</span>Tmavý vzhled
|
|
3329
|
+
</a>
|
|
3330
|
+
<a id="switch-to-light-mode" href="javascript:void(0);" class="hidden">
|
|
3331
|
+
<span>
|
|
3332
|
+
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z"></path></svg>
|
|
3333
|
+
</span>Světlý vzhled
|
|
3334
|
+
</a>
|
|
3335
|
+
</div>
|
|
3336
|
+
</div>
|
|
3337
|
+
<div class="footer-list-content">
|
|
3338
|
+
<div class="linklist linklist-small">
|
|
3339
|
+
<h3>Užitečné</h3>
|
|
3340
|
+
<ul>
|
|
3341
|
+
<li><a href="/prihlaseni/">Přihlášení</a></li>
|
|
3342
|
+
<li><a href="/registrace/">Registrace</a></li>
|
|
3343
|
+
<li><a href="javascript:Didomi.preferences.show()">Nastavení soukromí</a></li>
|
|
3344
|
+
<li><a href="/vyvojari/">Pracuj s námi</a></li>
|
|
3345
|
+
<li><a href="/napis-nam/">Napiš nám</a></li>
|
|
3346
|
+
</ul>
|
|
3347
|
+
</div>
|
|
3348
|
+
|
|
3349
|
+
<div class="linklist">
|
|
3350
|
+
<h3>Obecné</h3>
|
|
3351
|
+
<ul>
|
|
3352
|
+
<li><a href="/provozovatel-a-redakce/">Provozovatel a redakce</a></li>
|
|
3353
|
+
<li><a href="/reklama-a-marketing/">Reklama a marketing</a></li>
|
|
3354
|
+
<li><a href="/zasady-ochrany-osobnich-udaju/">Zásady ochrany osobních údajů</a></li>
|
|
3355
|
+
<li><a href="/vseobecne-podminky-uzivani/">Všeobecné podmínky užívání</a></li>
|
|
3356
|
+
<li><a href="/cookies/">Cookies</a></li>
|
|
3357
|
+
</ul>
|
|
3358
|
+
</div>
|
|
3359
|
+
</div>
|
|
3360
|
+
</div>
|
|
3361
|
+
</div>
|
|
3362
|
+
|
|
3363
|
+
<div class="footer-about">
|
|
3364
|
+
<div class="footer-social">
|
|
3365
|
+
<h3>Social</h3>
|
|
3366
|
+
<a href="https://www.facebook.com/www.CSFD.cz/" class="btn-social" target="_blank" rel="noreferrer"><i class="icon icon-facebook"></i></a>
|
|
3367
|
+
<a href="https://www.instagram.com/csfd.cz/" class="btn-social" target="_blank" rel="noreferrer"><i class="icon icon-instagram"></i></a>
|
|
3368
|
+
</div>
|
|
3369
|
+
<div class="footer-app">
|
|
3370
|
+
<h3>Mobilní aplikace</h3>
|
|
3371
|
+
<a href="https://apps.apple.com/cz/app/csfd-web/id1552901865#?platform=iphone" class="btn-app-store" target="_blank"><img src=//static.pmgstatic.com/assets/images/4b37ac5ff3cce04f5ea0278688618768/appstore.svg alt="ČSFD Web | App Store"></a>
|
|
3372
|
+
<a href="https://play.google.com/store/apps/details?id=cz.csfd.lite" class="btn-google-play" target="_blank"><img src=//static.pmgstatic.com/assets/images/4b37ac5ff3cce04f5ea0278688618768/googleplay.svg alt="ČSFD Web | Google Play"></a>
|
|
3373
|
+
</div>
|
|
3374
|
+
<div class="site-info">
|
|
3375
|
+
<p>Česko-Slovenská filmová databáze</p><p>© 2001-2024 POMO Media Group s.r.o.</p>
|
|
3376
|
+
<p>Všechna práva vyhrazena.</p>
|
|
3377
|
+
</div>
|
|
3378
|
+
</div>
|
|
3379
|
+
</div>
|
|
3380
|
+
</footer>
|
|
3381
|
+
</div>
|
|
3382
|
+
<div id="panelModal" class="modal mfp-hide" role="dialog">
|
|
3383
|
+
<span id="mfp-modalWindow">
|
|
3384
|
+
<div id="snippet--modalWindow"></div>
|
|
3385
|
+
</span>
|
|
3386
|
+
</div>
|
|
3387
|
+
|
|
3388
|
+
<div id="snippet--flashes" class="flash-message" data-ajax-prepend="true">
|
|
3389
|
+
|
|
3390
|
+
</div>
|
|
3391
|
+
|
|
3392
|
+
<div id="slide_up" class="ad-pmg"></div>
|
|
3393
|
+
|
|
3394
|
+
|
|
3395
|
+
<script type="text/json" id="js-common-config">{"country":1,"domain":"csfd.cz","host":"www.csfd.cz","userLanguageId":1,"translations":{"web.ajax.default.error.message":"Omlouváme se, ale nastala chyba při zpracování.","web.ajax.resend.button":"Odeslat znovu","web.autocomplete.creator.header":"Tvůrci","web.autocomplete.creator.more.link":"Všichni tvůrci","web.autocomplete.film.header":"Filmy","web.autocomplete.film.more.link":"Všechny filmy","web.autocomplete.noservice":"Služba vyhledávání není momentálně dostupná.","web.autocomplete.searching":"Vyhledávám...","web.autocomplete.search.select":"Vyplň název filmu / jméno tvůrce nebo uživatele","web.autocomplete.series.header":"Seriály","web.autocomplete.series.more.link":"Všechny seriály","web.autocomplete.user.header":"Uživatelé","web.autocomplete.user.more.link":"Všichni uživatelé","web.check.all":"zaškrtnout vše","web.fileupload.preloader":"Načítám knihovnu, prosím o strpení...","web.modal.confirm.close":"Opravdu chceš zavřít okno? Možná máš neuložené změny.","web.preloader.loading":"Načítání...","web.search.creator.notfound":"Nenalezeni žádní tvůrci","web.search.film.notfound":"Nenalezeny žádné filmy","web.search.series.notfound":"Nenalezeny žádné seriály","web.search.user.notfound":"Nenalezeni žádní uživatelé","web.selectize.plugin.remove.button.remove":"Odebrat","web.sortable.error.move":"Při přesunu pozic došlo k chybě. Stránka bude obnovena. Pokračovat?","web.common.onboarding.button.previous":"Předchozí","web.common.onboarding.button.next":"Další","web.common.onboarding.button.close":"Zavřít"},"route":":Web:Creator:Overview:default","isLoggedIn":false,"userId":null,"hooks":["FormGet","AutoSubmitForm"]}</script>
|
|
3396
|
+
<script src="//static.pmgstatic.com/assets/utils-js/c38a059f9f69d34b09118407202a750c/scripts.min.js"></script>
|
|
3397
|
+
<script type="text/javascript">
|
|
3398
|
+
CSFDAds.setTServer("https://a.csfd.cz/csfd/tserver");
|
|
3399
|
+
CSFDAds.complete({"ball":{"site":"csfd.cz","page":3,"login":2,"viewId":33285982,"creator_id":2120},"0":{"area":"leaderboard","size":"1000x210,2000x1400,1800x1000,728x90,970x210,750x100,998x200,930x180,970x90,750x200,1000x200,branding_web"},"1":{"area":"large_rectangle_1","size":"336x300,300x250,336x280,320x100,300x100,300x300"},"2":{"area":"large_rectangle_2","size":"336x300,300x250,336x280,320x100,300x100,300x300"},"3":{"area":"large_rectangle_3","size":"336x300,300x250,336x280,320x100,300x100,300x300"},"4":{"area":"billboard","size":"970x250,728x90,1000x310,970x310,970x210,950x300,900x250,1000x210,750x100,998x200,930x180,970x90,750x200,1000x250,750x300,980x250,1000x200"},"5":{"area":"slide_up","size":"970x250,728x90,1000x310,320x100,970x310,970x210,320x50,300x100,300x50,360x90,500x200,320x150,slide_up"},"6":{"area":"mobile_leaderboard","size":"320x100,320x50,300x100,300x50"},"7":{"area":"mobile_square_1","size":"300x300,300x250,250x250,200x200,300x100,300x600,480x820,720x1280,Interscroller"},"8":{"area":"mobile_square_2","size":"300x300,300x250,250x250,200x200,300x100"},"9":{"area":"mobile_square_3","size":"300x300,300x250,250x250,200x200,300x100"},"10":{"area":"mobile_square_4","size":"300x300,300x250,250x250,200x200,300x100"},"11":{"area":"mobile_billboard","size":"300x300,300x250,250x250,200x200,300x100"},"12":{"area":"native_short_1","size":"native_50,430x115,320x100","options":"lazy"},"13":{"area":"pre_roll","size":"videoad","supertag":"InstreamVideo"},"14":{"area":"pre_roll_2","size":"videoad","supertag":"InstreamVideo"}}, false, false);
|
|
3400
|
+
</script>
|
|
3401
|
+
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TM3S526" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
|
|
3402
|
+
</body>
|
|
3403
|
+
|
|
3404
|
+
<a href="#top" title="Zpět nahoru" id="back-to-top"><i class="icon icon-arrow-up" aria-hidden="true"></i></a>
|
|
3405
|
+
</html>
|
|
3406
|
+
|
|
3407
|
+
`;
|