chore(source): improve 4KHDHub search matching
- search without year, otherwise incorrect results might be returned only - do a less stricter levenshtein if name is fully included
This commit is contained in:
parent
66fb0e2e6d
commit
b273e3a71d
38 changed files with 6449 additions and 791 deletions
|
|
@ -60,4 +60,14 @@ describe('FourKHDHub', () => {
|
|||
const streams = await source.handle(ctx, 'series', new TmdbId(66732, 5, 8));
|
||||
expect(streams).toMatchSnapshot();
|
||||
});
|
||||
|
||||
test('handle f1', async () => {
|
||||
const streams = await source.handle(ctx, 'movie', new TmdbId(911430, undefined, undefined));
|
||||
expect(streams).toMatchSnapshot();
|
||||
});
|
||||
|
||||
test('handle the tank', async () => {
|
||||
const streams = await source.handle(ctx, 'movie', new TmdbId(1252037, undefined, undefined));
|
||||
expect(streams).toMatchSnapshot();
|
||||
});
|
||||
});
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ export class FourKHDHub extends Source {
|
|||
private readonly fetchPageUrl = async (ctx: Context, tmdbId: TmdbId): Promise<URL | undefined> => {
|
||||
const [name, year] = await getTmdbNameAndYear(ctx, this.fetcher, tmdbId);
|
||||
|
||||
const searchUrl = new URL(`/?s=${encodeURIComponent(`${name} ${year}`)}`, await this.getBaseUrl(ctx));
|
||||
const searchUrl = new URL(`/?s=${encodeURIComponent(name)}`, await this.getBaseUrl(ctx));
|
||||
const html = await this.fetcher.text(ctx, searchUrl);
|
||||
|
||||
const $ = cheerio.load(html);
|
||||
|
|
@ -87,7 +87,10 @@ export class FourKHDHub extends Source {
|
|||
.replace(/\[.*?]/, '')
|
||||
.trim();
|
||||
|
||||
return levenshtein.get(movieCardTitle, name, { useCollator: true }) < 5;
|
||||
const diff = levenshtein.get(movieCardTitle, name, { useCollator: true });
|
||||
|
||||
return diff < 5
|
||||
|| (movieCardTitle.includes(name) && diff < 15);
|
||||
})
|
||||
.map(async (_i, el) => new URL($(el).attr('href') as string, await this.getBaseUrl(ctx)))
|
||||
.get(0);
|
||||
|
|
|
|||
|
|
@ -1080,6 +1080,9 @@ p, .metadata-value, .episode-description, .movie-tagline {
|
|||
<li><a href="/category/jiohotstar/" class="dropdown-item">JioHotstar</a></li>
|
||||
<li><a href="/category/disney/" class="dropdown-item">Disney+</a></li>
|
||||
<li><a href="/category/Apple_TV/" class="dropdown-item">Apple TV+</a></li>
|
||||
<li><a href="/category/hbo_max/" class="dropdown-item">HBO Max</a></li>
|
||||
<li><a href="/category/hulu/" class="dropdown-item">Hulu</a></li>
|
||||
<li><a href="/category/crave/" class="dropdown-item">Crave</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
|
|
@ -1179,7 +1182,7 @@ p, .metadata-value, .episode-description, .movie-tagline {
|
|||
Home
|
||||
</a>
|
||||
<span class="breadcrumb-separator">/</span>
|
||||
<a href="/category/new-movies-10810/" class="text-muted-foreground hover:text-foreground">
|
||||
<a href="/category/movies/" class="text-muted-foreground hover:text-foreground">
|
||||
Movies
|
||||
</a>
|
||||
</div>
|
||||
|
|
@ -1203,20 +1206,25 @@ p, .metadata-value, .episode-description, .movie-tagline {
|
|||
|
||||
<div class="mt-2 flex flex-wrap items-center gap-2 text-muted-foreground">
|
||||
|
||||
<div class="imdb-badge badge">
|
||||
<span class="imdb-logo">IMDb</span>
|
||||
<span class="imdb-score">6.9</span>
|
||||
</div>
|
||||
<span>•</span>
|
||||
|
||||
<span class="badge badge-outline">Action</span>
|
||||
<span class="badge badge-outline"><a href="/category/action/">Action</a></span>
|
||||
|
||||
<span class="badge badge-outline">Crime</span>
|
||||
<span class="badge badge-outline"><a href="/category/crime/">Crime</a></span>
|
||||
|
||||
<span class="badge badge-outline">Thriller</span>
|
||||
<span class="badge badge-outline"><a href="/category/thriller/">Thriller</a></span>
|
||||
|
||||
<span class="badge badge-outline">Movies</span>
|
||||
<span class="badge badge-outline"><a href="/category/movies/">Movies</a></span>
|
||||
|
||||
<span class="badge badge-outline">1080p</span>
|
||||
<span class="badge badge-outline"><a href="/category/1080p/">1080p</a></span>
|
||||
|
||||
<span class="badge badge-outline">10Bit</span>
|
||||
<span class="badge badge-outline"><a href="/category/10bit/">10Bit</a></span>
|
||||
|
||||
<span class="badge badge-outline">BluRay</span>
|
||||
<span class="badge badge-outline"><a href="/category/bluray/">BluRay</a></span>
|
||||
|
||||
<!--<span class="badge badge-outline">Dual Audio</span>-->
|
||||
</div>
|
||||
|
|
@ -1490,37 +1498,9 @@ p, .metadata-value, .episode-description, .movie-tagline {
|
|||
<div class="card-grid-small">
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/demon-slayer-kimetsu-no-yaiba-infinity-castle-movie-5110/" class="movie-card">
|
||||
<a href="/his-hers-series-5252/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/fWVSwgjpT2D78VUh6X8UBd2rorW.jpg" alt="Demon Slayer: Kimetsu no Yaiba Infinity Castle" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Fantasy</span>
|
||||
|
||||
<span class="movie-card-format">Animation</span>
|
||||
|
||||
<span class="movie-card-format">Action</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
|
||||
<span class="movie-card-format">WEB-DL</span>
|
||||
|
||||
<span class="movie-card-format">Movies</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Demon Slayer: Kimetsu no Yaiba Infinity Castle</h3>
|
||||
<p class="movie-card-meta">2025 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/mayor-of-kingstown-series-4053/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/86OUOPulMiM8rjrQSt4KMev7UAa.jpg" alt="Mayor of Kingstown" class="w-full h-full object-cover">
|
||||
<img src="https://image.tmdb.org/t/p/w500/cDSXLVQLkCSBIpBx3UW04TsfZ5c.jpg" alt="HIS & HERS" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
|
|
@ -1530,54 +1510,94 @@ p, .metadata-value, .episode-description, .movie-tagline {
|
|||
|
||||
<span class="movie-card-format">Crime</span>
|
||||
|
||||
<span class="movie-card-format">Mystery</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">Netflix</span>
|
||||
|
||||
<span class="movie-card-format">Tamil</span>
|
||||
|
||||
<span class="movie-card-format">Series</span>
|
||||
|
||||
<span class="movie-card-format">Telugu</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">HIS & HERS</h3>
|
||||
<p class="movie-card-meta">2026 • S1.0 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/jujutsu-kaisen-series-224/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/fHpKWq9ayzSk8nSwqRuaAUemRKh.jpg" alt="JUJUTSU KAISEN" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Animation</span>
|
||||
|
||||
<span class="movie-card-format">Action</span>
|
||||
|
||||
<span class="movie-card-format">Action & Adventure</span>
|
||||
|
||||
<span class="movie-card-format">Sci-Fi & Fantasy</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
|
||||
<span class="movie-card-format">HEVC</span>
|
||||
|
||||
<span class="movie-card-format">WEB-DL</span>
|
||||
|
||||
<span class="movie-card-format">BluRay</span>
|
||||
|
||||
<span class="movie-card-format">Series</span>
|
||||
|
||||
<span class="movie-card-format">Anime</span>
|
||||
|
||||
<span class="movie-card-format">Multi Audios</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">JUJUTSU KAISEN</h3>
|
||||
<p class="movie-card-meta">2020 • S1.0-S3.0 EP49 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/marvels-daredevil-series-104/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/QWbPaDxiB6LW2LjASknzYBvjMj.jpg" alt="Marvel's Daredevil" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Drama</span>
|
||||
|
||||
<span class="movie-card-format">Crime</span>
|
||||
|
||||
<span class="movie-card-format">Action & Adventure</span>
|
||||
|
||||
<span class="movie-card-format">Hindi</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">Dual Language</span>
|
||||
|
||||
<span class="movie-card-format">2160p</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
|
||||
<span class="movie-card-format">WEB-DL</span>
|
||||
|
||||
<span class="movie-card-format">BluRay</span>
|
||||
|
||||
<span class="movie-card-format">Series</span>
|
||||
|
||||
<span class="movie-card-format">JioHotstar</span>
|
||||
|
||||
<span class="movie-card-format">Paramount+</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Mayor of Kingstown</h3>
|
||||
<p class="movie-card-meta">2021 • S1.0-S4.0 EP10 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/justice-league-movie-5109/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/eifGNCSDuxJeS1loAXil5bIGgvC.jpg" alt="Justice League" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Adventure</span>
|
||||
|
||||
<span class="movie-card-format">Action</span>
|
||||
|
||||
<span class="movie-card-format">Science Fiction</span>
|
||||
|
||||
<span class="movie-card-format">2160p</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
|
||||
<span class="movie-card-format">WEB-DL</span>
|
||||
|
||||
<span class="movie-card-format">BluRay</span>
|
||||
|
||||
<span class="movie-card-format">REMUX</span>
|
||||
|
||||
<span class="movie-card-format">Movies</span>
|
||||
|
||||
<span class="movie-card-format">10Bit</span>
|
||||
|
||||
<span class="movie-card-format">DV HDR</span>
|
||||
|
|
@ -1588,46 +1608,38 @@ p, .metadata-value, .episode-description, .movie-tagline {
|
|||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Justice League</h3>
|
||||
<p class="movie-card-meta">2017 </p>
|
||||
<h3 class="movie-card-title">Marvel's Daredevil</h3>
|
||||
<p class="movie-card-meta">2015 • S1.0-S3.0 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/the-hobbit-the-battle-of-the-five-armies-movie-946/" class="movie-card">
|
||||
<a href="/the-night-manager-series-5119/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/xT98tLqatZPQApyRmlPL12LtiWp.jpg" alt="The Hobbit: The Battle of the Five Armies" class="w-full h-full object-cover">
|
||||
<img src="https://image.tmdb.org/t/p/w500/hdCC5N42cXERbzIn6ED7oqTKtkq.jpg" alt="The Night Manager" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Adventure</span>
|
||||
<span class="movie-card-format">Drama</span>
|
||||
|
||||
<span class="movie-card-format">Fantasy</span>
|
||||
<span class="movie-card-format">Thriller</span>
|
||||
|
||||
<span class="movie-card-format">Action</span>
|
||||
<span class="movie-card-format">Crime</span>
|
||||
|
||||
<span class="movie-card-format">2160p</span>
|
||||
<span class="movie-card-format">Mystery</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">WEB-DL</span>
|
||||
<span class="movie-card-format">Series</span>
|
||||
|
||||
<span class="movie-card-format">BluRay</span>
|
||||
|
||||
<span class="movie-card-format">Movies</span>
|
||||
|
||||
<span class="movie-card-format">10Bit</span>
|
||||
|
||||
<span class="movie-card-format">DV HDR</span>
|
||||
|
||||
<span class="movie-card-format">SDR</span>
|
||||
<span class="movie-card-format">Amazon Prime Video</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">The Hobbit: The Battle of the Five Armies</h3>
|
||||
<p class="movie-card-meta">2014 </p>
|
||||
<h3 class="movie-card-title">The Night Manager</h3>
|
||||
<p class="movie-card-meta">2016 • S1.0 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
|
|
|
|||
|
|
@ -1080,6 +1080,9 @@ p, .metadata-value, .episode-description, .movie-tagline {
|
|||
<li><a href="/category/jiohotstar/" class="dropdown-item">JioHotstar</a></li>
|
||||
<li><a href="/category/disney/" class="dropdown-item">Disney+</a></li>
|
||||
<li><a href="/category/Apple_TV/" class="dropdown-item">Apple TV+</a></li>
|
||||
<li><a href="/category/hbo_max/" class="dropdown-item">HBO Max</a></li>
|
||||
<li><a href="/category/hulu/" class="dropdown-item">Hulu</a></li>
|
||||
<li><a href="/category/crave/" class="dropdown-item">Crave</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
|
|
@ -1179,7 +1182,7 @@ p, .metadata-value, .episode-description, .movie-tagline {
|
|||
Home
|
||||
</a>
|
||||
<span class="breadcrumb-separator">/</span>
|
||||
<a href="/category/new-movies-10810/" class="text-muted-foreground hover:text-foreground">
|
||||
<a href="/category/movies/" class="text-muted-foreground hover:text-foreground">
|
||||
Movies
|
||||
</a>
|
||||
</div>
|
||||
|
|
@ -1209,23 +1212,23 @@ p, .metadata-value, .episode-description, .movie-tagline {
|
|||
</div>
|
||||
<span>•</span>
|
||||
|
||||
<span class="badge badge-outline">1080p</span>
|
||||
<span class="badge badge-outline"><a href="/category/1080p/">1080p</a></span>
|
||||
|
||||
<span class="badge badge-outline">10Bit</span>
|
||||
<span class="badge badge-outline"><a href="/category/10bit/">10Bit</a></span>
|
||||
|
||||
<span class="badge badge-outline">Action & Adventure</span>
|
||||
<span class="badge badge-outline"><a href="/category/action & adventure/">Action & Adventure</a></span>
|
||||
|
||||
<span class="badge badge-outline">Animation</span>
|
||||
<span class="badge badge-outline"><a href="/category/animation/">Animation</a></span>
|
||||
|
||||
<span class="badge badge-outline">BluRay</span>
|
||||
<span class="badge badge-outline"><a href="/category/bluray/">BluRay</a></span>
|
||||
|
||||
<span class="badge badge-outline">Comedy</span>
|
||||
<span class="badge badge-outline"><a href="/category/comedy/">Comedy</a></span>
|
||||
|
||||
<span class="badge badge-outline">Dual Language</span>
|
||||
<span class="badge badge-outline"><a href="/category/dual language/">Dual Language</a></span>
|
||||
|
||||
<span class="badge badge-outline">REMUX</span>
|
||||
<span class="badge badge-outline"><a href="/category/remux/">REMUX</a></span>
|
||||
|
||||
<span class="badge badge-outline">Movies</span>
|
||||
<span class="badge badge-outline"><a href="/category/movies/">Movies</a></span>
|
||||
|
||||
<!--<span class="badge badge-outline">Dual Audio</span>-->
|
||||
</div>
|
||||
|
|
@ -1499,43 +1502,13 @@ p, .metadata-value, .episode-description, .movie-tagline {
|
|||
<div class="card-grid-small">
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/demon-slayer-kimetsu-no-yaiba-infinity-castle-movie-5110/" class="movie-card">
|
||||
<a href="/people-we-meet-on-vacation-movie-5267/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/fWVSwgjpT2D78VUh6X8UBd2rorW.jpg" alt="Demon Slayer: Kimetsu no Yaiba Infinity Castle" class="w-full h-full object-cover">
|
||||
<img src="https://image.tmdb.org/t/p/w500/xzZaU0MN6L9oc1pl0RUXSB7hWwD.jpg" alt="People We Meet on Vacation" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Fantasy</span>
|
||||
|
||||
<span class="movie-card-format">Animation</span>
|
||||
|
||||
<span class="movie-card-format">Action</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
|
||||
<span class="movie-card-format">WEB-DL</span>
|
||||
|
||||
<span class="movie-card-format">Movies</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Demon Slayer: Kimetsu no Yaiba Infinity Castle</h3>
|
||||
<p class="movie-card-meta">2025 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/your-lie-in-april-series-5108/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/rRjfH3ckTYz8z8aSkJshFL4VyK9.jpg" alt="Your Lie in April" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Animation</span>
|
||||
|
||||
<span class="movie-card-format">Drama</span>
|
||||
<span class="movie-card-format">Drama</span>
|
||||
|
||||
<span class="movie-card-format">Comedy</span>
|
||||
|
||||
|
|
@ -1543,64 +1516,34 @@ p, .metadata-value, .episode-description, .movie-tagline {
|
|||
|
||||
<span class="movie-card-format">Hindi</span>
|
||||
|
||||
<span class="movie-card-format">Series</span>
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">Anime</span>
|
||||
<span class="movie-card-format">Netflix</span>
|
||||
|
||||
<span class="movie-card-format">Amazon Prime Video</span>
|
||||
<span class="movie-card-format">Tamil</span>
|
||||
|
||||
<span class="movie-card-format">Movies</span>
|
||||
|
||||
<span class="movie-card-format">Telugu</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Your Lie in April</h3>
|
||||
<p class="movie-card-meta">2014 • S1.0 </p>
|
||||
<h3 class="movie-card-title">People We Meet on Vacation</h3>
|
||||
<p class="movie-card-meta">2026 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/one-punch-man-series-565/" class="movie-card">
|
||||
<a href="/dark-moon-the-blood-altar-series-5268/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/original/sCYBBcI1PQFUsPWYVtW1dR1dhY7.jpg" alt="One Punch Man" class="w-full h-full object-cover">
|
||||
<img src="https://image.tmdb.org/t/p/w500/3xMrv5JDbgy1AUj6GURBaTv8sNt.jpg" alt="DARK MOON: THE BLOOD ALTAR" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Animation</span>
|
||||
|
||||
<span class="movie-card-format">Comedy</span>
|
||||
|
||||
<span class="movie-card-format">Action & Adventure</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
|
||||
<span class="movie-card-format">WEB-DL</span>
|
||||
|
||||
<span class="movie-card-format">Series</span>
|
||||
|
||||
<span class="movie-card-format">Anime</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">One Punch Man</h3>
|
||||
<p class="movie-card-meta">2015 • S1.0-S3.0 EP13 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/gachiakuta-series-2210/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/84LdrRRvpWk8g0EaaW7z3eKdfum.jpg" alt="Gachiakuta" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Animation</span>
|
||||
|
||||
<span class="movie-card-format">Drama</span>
|
||||
|
||||
<span class="movie-card-format">Action & Adventure</span>
|
||||
|
||||
<span class="movie-card-format">Sci-Fi & Fantasy</span>
|
||||
|
||||
<span class="movie-card-format">Hindi</span>
|
||||
|
|
@ -1611,12 +1554,102 @@ p, .metadata-value, .episode-description, .movie-tagline {
|
|||
|
||||
<span class="movie-card-format">Anime</span>
|
||||
|
||||
<span class="movie-card-format">Amazon Prime Video</span>
|
||||
|
||||
<span class="movie-card-format">Crunchyroll</span>
|
||||
|
||||
<span class="movie-card-format">Japanese</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Gachiakuta</h3>
|
||||
<p class="movie-card-meta">2025 • S1.1-S1.2 EP22 </p>
|
||||
<h3 class="movie-card-title">DARK MOON: THE BLOOD ALTAR</h3>
|
||||
<p class="movie-card-meta">2026 • S1.0 EP01 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/happy-death-day-2u-movie-5277/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/zKjPYr6Fk2womep0HhFBRpnRco0.jpg" alt="Happy Death Day 2U" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Horror</span>
|
||||
|
||||
<span class="movie-card-format">Comedy</span>
|
||||
|
||||
<span class="movie-card-format">Science Fiction</span>
|
||||
|
||||
<span class="movie-card-format">Hindi</span>
|
||||
|
||||
<span class="movie-card-format">Dual Language</span>
|
||||
|
||||
<span class="movie-card-format">2160p</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
|
||||
<span class="movie-card-format">HDR</span>
|
||||
|
||||
<span class="movie-card-format">BluRay</span>
|
||||
|
||||
<span class="movie-card-format">REMUX</span>
|
||||
|
||||
<span class="movie-card-format">Movies</span>
|
||||
|
||||
<span class="movie-card-format">10Bit</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Happy Death Day 2U</h3>
|
||||
<p class="movie-card-meta">2019 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/caught-stealing-movie-5273/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/cvda8s5J8YaHjTyEyXQpvD6f3iV.jpg" alt="Caught Stealing" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Comedy</span>
|
||||
|
||||
<span class="movie-card-format">Thriller</span>
|
||||
|
||||
<span class="movie-card-format">Crime</span>
|
||||
|
||||
<span class="movie-card-format">Hindi</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">Dual Language</span>
|
||||
|
||||
<span class="movie-card-format">2160p</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
|
||||
<span class="movie-card-format">WEB-DL</span>
|
||||
|
||||
<span class="movie-card-format">BluRay</span>
|
||||
|
||||
<span class="movie-card-format">Movies</span>
|
||||
|
||||
<span class="movie-card-format">10Bit</span>
|
||||
|
||||
<span class="movie-card-format">DV HDR</span>
|
||||
|
||||
<span class="movie-card-format">SDR</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Caught Stealing</h3>
|
||||
<p class="movie-card-meta">2025 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
|
|
|
|||
|
|
@ -1213,6 +1213,9 @@ code {
|
|||
<li><a href="/category/jiohotstar/" class="dropdown-item">JioHotstar</a></li>
|
||||
<li><a href="/category/disney/" class="dropdown-item">Disney+</a></li>
|
||||
<li><a href="/category/Apple_TV/" class="dropdown-item">Apple TV+</a></li>
|
||||
<li><a href="/category/hbo_max/" class="dropdown-item">HBO Max</a></li>
|
||||
<li><a href="/category/hulu/" class="dropdown-item">Hulu</a></li>
|
||||
<li><a href="/category/crave/" class="dropdown-item">Crave</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
|
|
@ -1312,7 +1315,7 @@ code {
|
|||
Home
|
||||
</a>
|
||||
<span class="breadcrumb-separator">/</span>
|
||||
<a href="/category/new-series-10811/" class="text-muted-foreground hover:text-foreground">
|
||||
<a href="/category/series/" class="text-muted-foreground hover:text-foreground">
|
||||
Web Series
|
||||
</a>
|
||||
</div>
|
||||
|
|
@ -1331,29 +1334,34 @@ code {
|
|||
<p class="movie-tagline">Everything is connected.</p>
|
||||
<div class="mt-2 flex flex-wrap items-center gap-2 text-muted-foreground">
|
||||
|
||||
<div class="imdb-badge badge">
|
||||
<span class="imdb-logo">IMDb</span>
|
||||
<span class="imdb-score">8.7</span>
|
||||
</div>
|
||||
<span>•</span>
|
||||
|
||||
|
||||
<span class="badge badge-outline">Crime</span>
|
||||
<span class="badge badge-outline"><a href="/category/crime/">Crime</a></span>
|
||||
|
||||
<span class="badge badge-outline">Drama</span>
|
||||
<span class="badge badge-outline"><a href="/category/drama/">Drama</a></span>
|
||||
|
||||
<span class="badge badge-outline">Mystery</span>
|
||||
<span class="badge badge-outline"><a href="/category/mystery/">Mystery</a></span>
|
||||
|
||||
<span class="badge badge-outline">Sci-Fi & Fantasy</span>
|
||||
<span class="badge badge-outline"><a href="/category/sci-fi & fantasy/">Sci-Fi & Fantasy</a></span>
|
||||
|
||||
<span class="badge badge-outline">Series</span>
|
||||
<span class="badge badge-outline"><a href="/category/series/">Series</a></span>
|
||||
|
||||
<span class="badge badge-outline">1080p</span>
|
||||
<span class="badge badge-outline"><a href="/category/1080p/">1080p</a></span>
|
||||
|
||||
<span class="badge badge-outline">2160p</span>
|
||||
<span class="badge badge-outline"><a href="/category/2160p/">2160p</a></span>
|
||||
|
||||
<span class="badge badge-outline">AAC</span>
|
||||
<span class="badge badge-outline"><a href="/category/aac/">AAC</a></span>
|
||||
|
||||
<span class="badge badge-outline">DDP</span>
|
||||
<span class="badge badge-outline"><a href="/category/ddp/">DDP</a></span>
|
||||
|
||||
<span class="badge badge-outline">English</span>
|
||||
<span class="badge badge-outline"><a href="/category/english/">English</a></span>
|
||||
|
||||
<span class="badge badge-outline">Hindi</span>
|
||||
<span class="badge badge-outline"><a href="/category/hindi/">Hindi</a></span>
|
||||
|
||||
|
||||
|
||||
|
|
@ -3832,14 +3840,14 @@ code {
|
|||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Stranger Things</h3>
|
||||
<p class="movie-card-meta">2016 • S1.0-S5.2 </p>
|
||||
<p class="movie-card-meta">2016 • S1.0-S5.3 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/mayor-of-kingstown-series-4053/" class="movie-card">
|
||||
<a href="/his-hers-series-5252/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/86OUOPulMiM8rjrQSt4KMev7UAa.jpg" alt="Mayor of Kingstown" class="w-full h-full object-cover">
|
||||
<img src="https://image.tmdb.org/t/p/w500/cDSXLVQLkCSBIpBx3UW04TsfZ5c.jpg" alt="HIS & HERS" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
|
|
@ -3849,90 +3857,96 @@ code {
|
|||
|
||||
<span class="movie-card-format">Crime</span>
|
||||
|
||||
<span class="movie-card-format">Hindi</span>
|
||||
<span class="movie-card-format">Mystery</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">2160p</span>
|
||||
<span class="movie-card-format">Netflix</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
<span class="movie-card-format">Tamil</span>
|
||||
|
||||
<span class="movie-card-format">Series</span>
|
||||
|
||||
<span class="movie-card-format">JioHotstar</span>
|
||||
|
||||
<span class="movie-card-format">Paramount+</span>
|
||||
<span class="movie-card-format">Telugu</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Mayor of Kingstown</h3>
|
||||
<p class="movie-card-meta">2021 • S1.0-S4.0 EP10 </p>
|
||||
<h3 class="movie-card-title">HIS & HERS</h3>
|
||||
<p class="movie-card-meta">2026 • S1.0 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/gachiakuta-series-2210/" class="movie-card">
|
||||
<a href="/people-we-meet-on-vacation-movie-5267/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/84LdrRRvpWk8g0EaaW7z3eKdfum.jpg" alt="Gachiakuta" class="w-full h-full object-cover">
|
||||
<img src="https://image.tmdb.org/t/p/w500/xzZaU0MN6L9oc1pl0RUXSB7hWwD.jpg" alt="People We Meet on Vacation" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Drama</span>
|
||||
|
||||
<span class="movie-card-format">Comedy</span>
|
||||
|
||||
<span class="movie-card-format">Romance</span>
|
||||
|
||||
<span class="movie-card-format">Hindi</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">Netflix</span>
|
||||
|
||||
<span class="movie-card-format">Tamil</span>
|
||||
|
||||
<span class="movie-card-format">Movies</span>
|
||||
|
||||
<span class="movie-card-format">Telugu</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">People We Meet on Vacation</h3>
|
||||
<p class="movie-card-meta">2026 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/jujutsu-kaisen-series-224/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/fHpKWq9ayzSk8nSwqRuaAUemRKh.jpg" alt="JUJUTSU KAISEN" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Animation</span>
|
||||
|
||||
<span class="movie-card-format">Drama</span>
|
||||
<span class="movie-card-format">Action</span>
|
||||
|
||||
<span class="movie-card-format">Action & Adventure</span>
|
||||
|
||||
<span class="movie-card-format">Sci-Fi & Fantasy</span>
|
||||
|
||||
<span class="movie-card-format">Hindi</span>
|
||||
<span class="movie-card-format">1080p</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
<span class="movie-card-format">HEVC</span>
|
||||
|
||||
<span class="movie-card-format">WEB-DL</span>
|
||||
|
||||
<span class="movie-card-format">BluRay</span>
|
||||
|
||||
<span class="movie-card-format">Series</span>
|
||||
|
||||
<span class="movie-card-format">Anime</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Gachiakuta</h3>
|
||||
<p class="movie-card-meta">2025 • S1.1-S1.2 EP22 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/let-this-grieving-soul-retire-series-187/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/egViTAdBqUyUFI2sIBsGbnH5Sun.jpg" alt="Let This Grieving Soul Retire" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Animation</span>
|
||||
|
||||
<span class="movie-card-format">Comedy</span>
|
||||
|
||||
<span class="movie-card-format">Sci-Fi & Fantasy</span>
|
||||
|
||||
<span class="movie-card-format">Hindi</span>
|
||||
|
||||
<span class="movie-card-format">DDP</span>
|
||||
|
||||
<span class="movie-card-format">Series</span>
|
||||
|
||||
<span class="movie-card-format">Anime</span>
|
||||
|
||||
<span class="movie-card-format">Amazon Prime Video</span>
|
||||
<span class="movie-card-format">Multi Audios</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Let This Grieving Soul Retire</h3>
|
||||
<p class="movie-card-meta">2024 • S1.0-S2.0 EP11 </p>
|
||||
<h3 class="movie-card-title">JUJUTSU KAISEN</h3>
|
||||
<p class="movie-card-meta">2020 • S1.0-S3.0 EP49 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
|
|
|
|||
|
|
@ -1213,6 +1213,9 @@ code {
|
|||
<li><a href="/category/jiohotstar/" class="dropdown-item">JioHotstar</a></li>
|
||||
<li><a href="/category/disney/" class="dropdown-item">Disney+</a></li>
|
||||
<li><a href="/category/Apple_TV/" class="dropdown-item">Apple TV+</a></li>
|
||||
<li><a href="/category/hbo_max/" class="dropdown-item">HBO Max</a></li>
|
||||
<li><a href="/category/hulu/" class="dropdown-item">Hulu</a></li>
|
||||
<li><a href="/category/crave/" class="dropdown-item">Crave</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
|
|
@ -1312,7 +1315,7 @@ code {
|
|||
Home
|
||||
</a>
|
||||
<span class="breadcrumb-separator">/</span>
|
||||
<a href="/category/new-series-10811/" class="text-muted-foreground hover:text-foreground">
|
||||
<a href="/category/series/" class="text-muted-foreground hover:text-foreground">
|
||||
Web Series
|
||||
</a>
|
||||
</div>
|
||||
|
|
@ -1331,19 +1334,24 @@ code {
|
|||
<p class="movie-tagline">They're catching killers. He's about to become one.</p>
|
||||
<div class="mt-2 flex flex-wrap items-center gap-2 text-muted-foreground">
|
||||
|
||||
<div class="imdb-badge badge">
|
||||
<span class="imdb-logo">IMDb</span>
|
||||
<span class="imdb-score">8.2</span>
|
||||
</div>
|
||||
<span>•</span>
|
||||
|
||||
|
||||
<span class="badge badge-outline">Crime</span>
|
||||
<span class="badge badge-outline"><a href="/category/crime/">Crime</a></span>
|
||||
|
||||
<span class="badge badge-outline">DDP</span>
|
||||
<span class="badge badge-outline"><a href="/category/ddp/">DDP</a></span>
|
||||
|
||||
<span class="badge badge-outline">Drama</span>
|
||||
<span class="badge badge-outline"><a href="/category/drama/">Drama</a></span>
|
||||
|
||||
<span class="badge badge-outline">English</span>
|
||||
<span class="badge badge-outline"><a href="/category/english/">English</a></span>
|
||||
|
||||
<span class="badge badge-outline">Series</span>
|
||||
<span class="badge badge-outline"><a href="/category/series/">Series</a></span>
|
||||
|
||||
<span class="badge badge-outline">Series</span>
|
||||
<span class="badge badge-outline"><a href="/category/series/">Series</a></span>
|
||||
|
||||
|
||||
|
||||
|
|
@ -2689,14 +2697,14 @@ code {
|
|||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Stranger Things</h3>
|
||||
<p class="movie-card-meta">2016 • S1.0-S5.2 </p>
|
||||
<p class="movie-card-meta">2016 • S1.0-S5.3 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/mayor-of-kingstown-series-4053/" class="movie-card">
|
||||
<a href="/his-hers-series-5252/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/86OUOPulMiM8rjrQSt4KMev7UAa.jpg" alt="Mayor of Kingstown" class="w-full h-full object-cover">
|
||||
<img src="https://image.tmdb.org/t/p/w500/cDSXLVQLkCSBIpBx3UW04TsfZ5c.jpg" alt="HIS & HERS" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
|
|
@ -2706,65 +2714,31 @@ code {
|
|||
|
||||
<span class="movie-card-format">Crime</span>
|
||||
|
||||
<span class="movie-card-format">Hindi</span>
|
||||
<span class="movie-card-format">Mystery</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">2160p</span>
|
||||
<span class="movie-card-format">Netflix</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
<span class="movie-card-format">Tamil</span>
|
||||
|
||||
<span class="movie-card-format">Series</span>
|
||||
|
||||
<span class="movie-card-format">JioHotstar</span>
|
||||
|
||||
<span class="movie-card-format">Paramount+</span>
|
||||
<span class="movie-card-format">Telugu</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Mayor of Kingstown</h3>
|
||||
<p class="movie-card-meta">2021 • S1.0-S4.0 EP10 </p>
|
||||
<h3 class="movie-card-title">HIS & HERS</h3>
|
||||
<p class="movie-card-meta">2026 • S1.0 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/gachiakuta-series-2210/" class="movie-card">
|
||||
<a href="/people-we-meet-on-vacation-movie-5267/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/84LdrRRvpWk8g0EaaW7z3eKdfum.jpg" alt="Gachiakuta" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Animation</span>
|
||||
|
||||
<span class="movie-card-format">Drama</span>
|
||||
|
||||
<span class="movie-card-format">Action & Adventure</span>
|
||||
|
||||
<span class="movie-card-format">Sci-Fi & Fantasy</span>
|
||||
|
||||
<span class="movie-card-format">Hindi</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">Series</span>
|
||||
|
||||
<span class="movie-card-format">Anime</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Gachiakuta</h3>
|
||||
<p class="movie-card-meta">2025 • S1.1-S1.2 EP22 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/surely-tomorrow-series-4772/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/k9xPcIsxXbc1Xuf45K0FU8yM2m5.jpg" alt="Surely Tomorrow" class="w-full h-full object-cover">
|
||||
<img src="https://image.tmdb.org/t/p/w500/xzZaU0MN6L9oc1pl0RUXSB7hWwD.jpg" alt="People We Meet on Vacation" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
|
|
@ -2776,18 +2750,58 @@ code {
|
|||
|
||||
<span class="movie-card-format">Hindi</span>
|
||||
|
||||
<span class="movie-card-format">Series</span>
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">Amazon Prime Video</span>
|
||||
<span class="movie-card-format">Netflix</span>
|
||||
|
||||
<span class="movie-card-format">Korean</span>
|
||||
<span class="movie-card-format">Tamil</span>
|
||||
|
||||
<span class="movie-card-format">Movies</span>
|
||||
|
||||
<span class="movie-card-format">Telugu</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Surely Tomorrow</h3>
|
||||
<p class="movie-card-meta">2025 • S1.0 EP08 </p>
|
||||
<h3 class="movie-card-title">People We Meet on Vacation</h3>
|
||||
<p class="movie-card-meta">2026 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/tehran-series-2790/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/pXV1fcIQIbpTNYRJ47rfUvG6hq4.jpg" alt="Tehran" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Drama</span>
|
||||
|
||||
<span class="movie-card-format">Action</span>
|
||||
|
||||
<span class="movie-card-format">Thriller</span>
|
||||
|
||||
<span class="movie-card-format">Crime</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">2160p</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
|
||||
<span class="movie-card-format">HDR</span>
|
||||
|
||||
<span class="movie-card-format">DoVi</span>
|
||||
|
||||
<span class="movie-card-format">Series</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Tehran</h3>
|
||||
<p class="movie-card-meta">2020 • S1.0-S3.0 EP01 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
|
|
|
|||
|
|
@ -1213,6 +1213,9 @@ code {
|
|||
<li><a href="/category/jiohotstar/" class="dropdown-item">JioHotstar</a></li>
|
||||
<li><a href="/category/disney/" class="dropdown-item">Disney+</a></li>
|
||||
<li><a href="/category/Apple_TV/" class="dropdown-item">Apple TV+</a></li>
|
||||
<li><a href="/category/hbo_max/" class="dropdown-item">HBO Max</a></li>
|
||||
<li><a href="/category/hulu/" class="dropdown-item">Hulu</a></li>
|
||||
<li><a href="/category/crave/" class="dropdown-item">Crave</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
|
|
@ -1312,7 +1315,7 @@ code {
|
|||
Home
|
||||
</a>
|
||||
<span class="breadcrumb-separator">/</span>
|
||||
<a href="/category/new-series-10811/" class="text-muted-foreground hover:text-foreground">
|
||||
<a href="/category/series/" class="text-muted-foreground hover:text-foreground">
|
||||
Web Series
|
||||
</a>
|
||||
</div>
|
||||
|
|
@ -1331,19 +1334,24 @@ code {
|
|||
<p class="movie-tagline">He's alive & killing it.</p>
|
||||
<div class="mt-2 flex flex-wrap items-center gap-2 text-muted-foreground">
|
||||
|
||||
<div class="imdb-badge badge">
|
||||
<span class="imdb-logo">IMDb</span>
|
||||
<span class="imdb-score">9.1</span>
|
||||
</div>
|
||||
<span>•</span>
|
||||
|
||||
|
||||
<span class="badge badge-outline">1080p</span>
|
||||
<span class="badge badge-outline"><a href="/category/1080p/">1080p</a></span>
|
||||
|
||||
<span class="badge badge-outline">2160p</span>
|
||||
<span class="badge badge-outline"><a href="/category/2160p/">2160p</a></span>
|
||||
|
||||
<span class="badge badge-outline">Crime</span>
|
||||
<span class="badge badge-outline"><a href="/category/crime/">Crime</a></span>
|
||||
|
||||
<span class="badge badge-outline">Drama</span>
|
||||
<span class="badge badge-outline"><a href="/category/drama/">Drama</a></span>
|
||||
|
||||
<span class="badge badge-outline">English</span>
|
||||
<span class="badge badge-outline"><a href="/category/english/">English</a></span>
|
||||
|
||||
<span class="badge badge-outline">Series</span>
|
||||
<span class="badge badge-outline"><a href="/category/series/">Series</a></span>
|
||||
|
||||
|
||||
|
||||
|
|
@ -2554,14 +2562,14 @@ code {
|
|||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Stranger Things</h3>
|
||||
<p class="movie-card-meta">2016 • S1.0-S5.2 </p>
|
||||
<p class="movie-card-meta">2016 • S1.0-S5.3 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/mayor-of-kingstown-series-4053/" class="movie-card">
|
||||
<a href="/his-hers-series-5252/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/86OUOPulMiM8rjrQSt4KMev7UAa.jpg" alt="Mayor of Kingstown" class="w-full h-full object-cover">
|
||||
<img src="https://image.tmdb.org/t/p/w500/cDSXLVQLkCSBIpBx3UW04TsfZ5c.jpg" alt="HIS & HERS" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
|
|
@ -2571,65 +2579,31 @@ code {
|
|||
|
||||
<span class="movie-card-format">Crime</span>
|
||||
|
||||
<span class="movie-card-format">Hindi</span>
|
||||
<span class="movie-card-format">Mystery</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">2160p</span>
|
||||
<span class="movie-card-format">Netflix</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
<span class="movie-card-format">Tamil</span>
|
||||
|
||||
<span class="movie-card-format">Series</span>
|
||||
|
||||
<span class="movie-card-format">JioHotstar</span>
|
||||
|
||||
<span class="movie-card-format">Paramount+</span>
|
||||
<span class="movie-card-format">Telugu</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Mayor of Kingstown</h3>
|
||||
<p class="movie-card-meta">2021 • S1.0-S4.0 EP10 </p>
|
||||
<h3 class="movie-card-title">HIS & HERS</h3>
|
||||
<p class="movie-card-meta">2026 • S1.0 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/gachiakuta-series-2210/" class="movie-card">
|
||||
<a href="/people-we-meet-on-vacation-movie-5267/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/84LdrRRvpWk8g0EaaW7z3eKdfum.jpg" alt="Gachiakuta" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Animation</span>
|
||||
|
||||
<span class="movie-card-format">Drama</span>
|
||||
|
||||
<span class="movie-card-format">Action & Adventure</span>
|
||||
|
||||
<span class="movie-card-format">Sci-Fi & Fantasy</span>
|
||||
|
||||
<span class="movie-card-format">Hindi</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">Series</span>
|
||||
|
||||
<span class="movie-card-format">Anime</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Gachiakuta</h3>
|
||||
<p class="movie-card-meta">2025 • S1.1-S1.2 EP22 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/surely-tomorrow-series-4772/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/k9xPcIsxXbc1Xuf45K0FU8yM2m5.jpg" alt="Surely Tomorrow" class="w-full h-full object-cover">
|
||||
<img src="https://image.tmdb.org/t/p/w500/xzZaU0MN6L9oc1pl0RUXSB7hWwD.jpg" alt="People We Meet on Vacation" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
|
|
@ -2641,18 +2615,58 @@ code {
|
|||
|
||||
<span class="movie-card-format">Hindi</span>
|
||||
|
||||
<span class="movie-card-format">Series</span>
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">Amazon Prime Video</span>
|
||||
<span class="movie-card-format">Netflix</span>
|
||||
|
||||
<span class="movie-card-format">Korean</span>
|
||||
<span class="movie-card-format">Tamil</span>
|
||||
|
||||
<span class="movie-card-format">Movies</span>
|
||||
|
||||
<span class="movie-card-format">Telugu</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Surely Tomorrow</h3>
|
||||
<p class="movie-card-meta">2025 • S1.0 EP08 </p>
|
||||
<h3 class="movie-card-title">People We Meet on Vacation</h3>
|
||||
<p class="movie-card-meta">2026 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/tehran-series-2790/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/pXV1fcIQIbpTNYRJ47rfUvG6hq4.jpg" alt="Tehran" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Drama</span>
|
||||
|
||||
<span class="movie-card-format">Action</span>
|
||||
|
||||
<span class="movie-card-format">Thriller</span>
|
||||
|
||||
<span class="movie-card-format">Crime</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">2160p</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
|
||||
<span class="movie-card-format">HDR</span>
|
||||
|
||||
<span class="movie-card-format">DoVi</span>
|
||||
|
||||
<span class="movie-card-format">Series</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Tehran</h3>
|
||||
<p class="movie-card-meta">2020 • S1.0-S3.0 EP01 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
|
|
|
|||
2205
src/source/__fixtures__/FourKHDHub/https:4khdhub.dadf1-the-movie-movie-3084
generated
Normal file
2205
src/source/__fixtures__/FourKHDHub/https:4khdhub.dadf1-the-movie-movie-3084
generated
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -1213,6 +1213,9 @@ code {
|
|||
<li><a href="/category/jiohotstar/" class="dropdown-item">JioHotstar</a></li>
|
||||
<li><a href="/category/disney/" class="dropdown-item">Disney+</a></li>
|
||||
<li><a href="/category/Apple_TV/" class="dropdown-item">Apple TV+</a></li>
|
||||
<li><a href="/category/hbo_max/" class="dropdown-item">HBO Max</a></li>
|
||||
<li><a href="/category/hulu/" class="dropdown-item">Hulu</a></li>
|
||||
<li><a href="/category/crave/" class="dropdown-item">Crave</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
|
|
@ -1312,7 +1315,7 @@ code {
|
|||
Home
|
||||
</a>
|
||||
<span class="breadcrumb-separator">/</span>
|
||||
<a href="/category/new-series-10811/" class="text-muted-foreground hover:text-foreground">
|
||||
<a href="/category/series/" class="text-muted-foreground hover:text-foreground">
|
||||
Web Series
|
||||
</a>
|
||||
</div>
|
||||
|
|
@ -1338,25 +1341,25 @@ code {
|
|||
<span>•</span>
|
||||
|
||||
|
||||
<span class="badge badge-outline">Amazon Prime Video</span>
|
||||
<span class="badge badge-outline"><a href="/category/amazon prime video/">Amazon Prime Video</a></span>
|
||||
|
||||
<span class="badge badge-outline">Comedy</span>
|
||||
<span class="badge badge-outline"><a href="/category/comedy/">Comedy</a></span>
|
||||
|
||||
<span class="badge badge-outline">Drama</span>
|
||||
<span class="badge badge-outline"><a href="/category/drama/">Drama</a></span>
|
||||
|
||||
<span class="badge badge-outline">Hindi</span>
|
||||
<span class="badge badge-outline"><a href="/category/hindi/">Hindi</a></span>
|
||||
|
||||
<span class="badge badge-outline">Korean</span>
|
||||
<span class="badge badge-outline"><a href="/category/korean/">Korean</a></span>
|
||||
|
||||
<span class="badge badge-outline">Music</span>
|
||||
<span class="badge badge-outline"><a href="/category/music/">Music</a></span>
|
||||
|
||||
<span class="badge badge-outline">Mystery</span>
|
||||
<span class="badge badge-outline"><a href="/category/mystery/">Mystery</a></span>
|
||||
|
||||
<span class="badge badge-outline">Romance</span>
|
||||
<span class="badge badge-outline"><a href="/category/romance/">Romance</a></span>
|
||||
|
||||
<span class="badge badge-outline">Sci-Fi & Fantasy</span>
|
||||
<span class="badge badge-outline"><a href="/category/sci-fi & fantasy/">Sci-Fi & Fantasy</a></span>
|
||||
|
||||
<span class="badge badge-outline">Series</span>
|
||||
<span class="badge badge-outline"><a href="/category/series/">Series</a></span>
|
||||
|
||||
|
||||
|
||||
|
|
@ -2772,14 +2775,14 @@ code {
|
|||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Stranger Things</h3>
|
||||
<p class="movie-card-meta">2016 • S1.0-S5.2 </p>
|
||||
<p class="movie-card-meta">2016 • S1.0-S5.3 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/mayor-of-kingstown-series-4053/" class="movie-card">
|
||||
<a href="/his-hers-series-5252/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/86OUOPulMiM8rjrQSt4KMev7UAa.jpg" alt="Mayor of Kingstown" class="w-full h-full object-cover">
|
||||
<img src="https://image.tmdb.org/t/p/w500/cDSXLVQLkCSBIpBx3UW04TsfZ5c.jpg" alt="HIS & HERS" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
|
|
@ -2789,33 +2792,65 @@ code {
|
|||
|
||||
<span class="movie-card-format">Crime</span>
|
||||
|
||||
<span class="movie-card-format">Hindi</span>
|
||||
<span class="movie-card-format">Mystery</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">2160p</span>
|
||||
<span class="movie-card-format">Netflix</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
<span class="movie-card-format">Tamil</span>
|
||||
|
||||
<span class="movie-card-format">Series</span>
|
||||
|
||||
<span class="movie-card-format">JioHotstar</span>
|
||||
|
||||
<span class="movie-card-format">Paramount+</span>
|
||||
<span class="movie-card-format">Telugu</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Mayor of Kingstown</h3>
|
||||
<p class="movie-card-meta">2021 • S1.0-S4.0 EP10 </p>
|
||||
<h3 class="movie-card-title">HIS & HERS</h3>
|
||||
<p class="movie-card-meta">2026 • S1.0 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/one-punch-man-series-565/" class="movie-card">
|
||||
<a href="/people-we-meet-on-vacation-movie-5267/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/original/sCYBBcI1PQFUsPWYVtW1dR1dhY7.jpg" alt="One Punch Man" class="w-full h-full object-cover">
|
||||
<img src="https://image.tmdb.org/t/p/w500/xzZaU0MN6L9oc1pl0RUXSB7hWwD.jpg" alt="People We Meet on Vacation" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Drama</span>
|
||||
|
||||
<span class="movie-card-format">Comedy</span>
|
||||
|
||||
<span class="movie-card-format">Romance</span>
|
||||
|
||||
<span class="movie-card-format">Hindi</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">Netflix</span>
|
||||
|
||||
<span class="movie-card-format">Tamil</span>
|
||||
|
||||
<span class="movie-card-format">Movies</span>
|
||||
|
||||
<span class="movie-card-format">Telugu</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">People We Meet on Vacation</h3>
|
||||
<p class="movie-card-meta">2026 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/lets-play-series-4010/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/aLzTaEle2w6W4rKKbIrF6WYWw9w.jpg" alt="Let's Play" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
|
|
@ -2823,39 +2858,7 @@ code {
|
|||
|
||||
<span class="movie-card-format">Comedy</span>
|
||||
|
||||
<span class="movie-card-format">Action & Adventure</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
|
||||
<span class="movie-card-format">WEB-DL</span>
|
||||
|
||||
<span class="movie-card-format">Series</span>
|
||||
|
||||
<span class="movie-card-format">Anime</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">One Punch Man</h3>
|
||||
<p class="movie-card-meta">2015 • S1.0-S3.0 EP13 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/gachiakuta-series-2210/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/84LdrRRvpWk8g0EaaW7z3eKdfum.jpg" alt="Gachiakuta" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Animation</span>
|
||||
|
||||
<span class="movie-card-format">Drama</span>
|
||||
|
||||
<span class="movie-card-format">Action & Adventure</span>
|
||||
|
||||
<span class="movie-card-format">Sci-Fi & Fantasy</span>
|
||||
<span class="movie-card-format">Romance</span>
|
||||
|
||||
<span class="movie-card-format">Hindi</span>
|
||||
|
||||
|
|
@ -2865,12 +2868,14 @@ code {
|
|||
|
||||
<span class="movie-card-format">Anime</span>
|
||||
|
||||
<span class="movie-card-format">Crunchyroll</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Gachiakuta</h3>
|
||||
<p class="movie-card-meta">2025 • S1.1-S1.2 EP22 </p>
|
||||
<h3 class="movie-card-title">Let's Play</h3>
|
||||
<p class="movie-card-meta">2025 • S1.0 EP11 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
|
|
|
|||
|
|
@ -128,6 +128,9 @@
|
|||
<li><a href="/category/jiohotstar/" class="dropdown-item">JioHotstar</a></li>
|
||||
<li><a href="/category/disney/" class="dropdown-item">Disney+</a></li>
|
||||
<li><a href="/category/Apple_TV/" class="dropdown-item">Apple TV+</a></li>
|
||||
<li><a href="/category/hbo_max/" class="dropdown-item">HBO Max</a></li>
|
||||
<li><a href="/category/hulu/" class="dropdown-item">Hulu</a></li>
|
||||
<li><a href="/category/crave/" class="dropdown-item">Crave</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
|
|
@ -223,7 +226,7 @@
|
|||
<section class="latest-releases">
|
||||
<div class="latest-releases-header">
|
||||
<h2 class="latest-releases-title">
|
||||
<span><svg style="vertical-align: bottom;" xmlns="http://www.w3.org/2000/svg" height="32px" viewBox="0 -960 960 960" width="32px" fill="#e3e3e3"><path d="M240-400q0 52 21 98.5t60 81.5q-1-5-1-9v-9q0-32 12-60t35-51l113-111 113 111q23 23 35 51t12 60v9q0 4-1 9 39-35 60-81.5t21-98.5q0-50-18.5-94.5T648-574q-20 13-42 19.5t-45 6.5q-62 0-107.5-41T401-690q-39 33-69 68.5t-50.5 72Q261-513 250.5-475T240-400Zm240 52-57 56q-11 11-17 25t-6 29q0 32 23.5 55t56.5 23q33 0 56.5-23t23.5-55q0-16-6-29.5T537-292l-57-56Zm0-492v132q0 34 23.5 57t57.5 23q18 0 33.5-7.5T622-658l18-22q74 42 117 117t43 163q0 134-93 227T480-80q-134 0-227-93t-93-227q0-129 86.5-245T480-840Z"/></svg></span> Latest Releases </h2>
|
||||
<span><svg style="vertical-align: bottom;" xmlns="http://www.w3.org/2000/svg" height="32px" viewBox="0 -960 960 960" width="32px" fill="#e3e3e3"><path d="M240-400q0 52 21 98.5t60 81.5q-1-5-1-9v-9q0-32 12-60t35-51l113-111 113 111q23 23 35 51t12 60v9q0 4-1 9 39-35 60-81.5t21-98.5q0-50-18.5-94.5T648-574q-20 13-42 19.5t-45 6.5q-62 0-107.5-41T401-690q-39 33-69 68.5t-50.5 72Q261-513 250.5-475T240-400Zm240 52-57 56q-11 11-17 25t-6 29q0 32 23.5 55t56.5 23q33 0 56.5-23t23.5-55q0-16-6-29.5T537-292l-57-56Zm0-492v132q0 34 23.5 57t57.5 23q18 0 33.5-7.5T622-658l18-22q74 42 117 117t43 163q0 134-93 227T480-80q-134 0-227-93t-93-227q0-129 86.5-245T480-840Z"/></svg></span> Search - Crank </h2>
|
||||
|
||||
</div>
|
||||
|
||||
|
|
@ -128,6 +128,9 @@
|
|||
<li><a href="/category/jiohotstar/" class="dropdown-item">JioHotstar</a></li>
|
||||
<li><a href="/category/disney/" class="dropdown-item">Disney+</a></li>
|
||||
<li><a href="/category/Apple_TV/" class="dropdown-item">Apple TV+</a></li>
|
||||
<li><a href="/category/hbo_max/" class="dropdown-item">HBO Max</a></li>
|
||||
<li><a href="/category/hulu/" class="dropdown-item">Hulu</a></li>
|
||||
<li><a href="/category/crave/" class="dropdown-item">Crave</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
|
|
@ -223,7 +226,7 @@
|
|||
<section class="latest-releases">
|
||||
<div class="latest-releases-header">
|
||||
<h2 class="latest-releases-title">
|
||||
<span><svg style="vertical-align: bottom;" xmlns="http://www.w3.org/2000/svg" height="32px" viewBox="0 -960 960 960" width="32px" fill="#e3e3e3"><path d="M240-400q0 52 21 98.5t60 81.5q-1-5-1-9v-9q0-32 12-60t35-51l113-111 113 111q23 23 35 51t12 60v9q0 4-1 9 39-35 60-81.5t21-98.5q0-50-18.5-94.5T648-574q-20 13-42 19.5t-45 6.5q-62 0-107.5-41T401-690q-39 33-69 68.5t-50.5 72Q261-513 250.5-475T240-400Zm240 52-57 56q-11 11-17 25t-6 29q0 32 23.5 55t56.5 23q33 0 56.5-23t23.5-55q0-16-6-29.5T537-292l-57-56Zm0-492v132q0 34 23.5 57t57.5 23q18 0 33.5-7.5T622-658l18-22q74 42 117 117t43 163q0 134-93 227T480-80q-134 0-227-93t-93-227q0-129 86.5-245T480-840Z"/></svg></span> Latest Releases </h2>
|
||||
<span><svg style="vertical-align: bottom;" xmlns="http://www.w3.org/2000/svg" height="32px" viewBox="0 -960 960 960" width="32px" fill="#e3e3e3"><path d="M240-400q0 52 21 98.5t60 81.5q-1-5-1-9v-9q0-32 12-60t35-51l113-111 113 111q23 23 35 51t12 60v9q0 4-1 9 39-35 60-81.5t21-98.5q0-50-18.5-94.5T648-574q-20 13-42 19.5t-45 6.5q-62 0-107.5-41T401-690q-39 33-69 68.5t-50.5 72Q261-513 250.5-475T240-400Zm240 52-57 56q-11 11-17 25t-6 29q0 32 23.5 55t56.5 23q33 0 56.5-23t23.5-55q0-16-6-29.5T537-292l-57-56Zm0-492v132q0 34 23.5 57t57.5 23q18 0 33.5-7.5T622-658l18-22q74 42 117 117t43 163q0 134-93 227T480-80q-134 0-227-93t-93-227q0-129 86.5-245T480-840Z"/></svg></span> Search - Crayon Shin-chan: Action Mask vs. Leotard Devil </h2>
|
||||
|
||||
</div>
|
||||
|
||||
|
|
@ -128,6 +128,9 @@
|
|||
<li><a href="/category/jiohotstar/" class="dropdown-item">JioHotstar</a></li>
|
||||
<li><a href="/category/disney/" class="dropdown-item">Disney+</a></li>
|
||||
<li><a href="/category/Apple_TV/" class="dropdown-item">Apple TV+</a></li>
|
||||
<li><a href="/category/hbo_max/" class="dropdown-item">HBO Max</a></li>
|
||||
<li><a href="/category/hulu/" class="dropdown-item">Hulu</a></li>
|
||||
<li><a href="/category/crave/" class="dropdown-item">Crave</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
|
|
@ -223,7 +226,7 @@
|
|||
<section class="latest-releases">
|
||||
<div class="latest-releases-header">
|
||||
<h2 class="latest-releases-title">
|
||||
<span><svg style="vertical-align: bottom;" xmlns="http://www.w3.org/2000/svg" height="32px" viewBox="0 -960 960 960" width="32px" fill="#e3e3e3"><path d="M240-400q0 52 21 98.5t60 81.5q-1-5-1-9v-9q0-32 12-60t35-51l113-111 113 111q23 23 35 51t12 60v9q0 4-1 9 39-35 60-81.5t21-98.5q0-50-18.5-94.5T648-574q-20 13-42 19.5t-45 6.5q-62 0-107.5-41T401-690q-39 33-69 68.5t-50.5 72Q261-513 250.5-475T240-400Zm240 52-57 56q-11 11-17 25t-6 29q0 32 23.5 55t56.5 23q33 0 56.5-23t23.5-55q0-16-6-29.5T537-292l-57-56Zm0-492v132q0 34 23.5 57t57.5 23q18 0 33.5-7.5T622-658l18-22q74 42 117 117t43 163q0 134-93 227T480-80q-134 0-227-93t-93-227q0-129 86.5-245T480-840Z"/></svg></span> Latest Releases </h2>
|
||||
<span><svg style="vertical-align: bottom;" xmlns="http://www.w3.org/2000/svg" height="32px" viewBox="0 -960 960 960" width="32px" fill="#e3e3e3"><path d="M240-400q0 52 21 98.5t60 81.5q-1-5-1-9v-9q0-32 12-60t35-51l113-111 113 111q23 23 35 51t12 60v9q0 4-1 9 39-35 60-81.5t21-98.5q0-50-18.5-94.5T648-574q-20 13-42 19.5t-45 6.5q-62 0-107.5-41T401-690q-39 33-69 68.5t-50.5 72Q261-513 250.5-475T240-400Zm240 52-57 56q-11 11-17 25t-6 29q0 32 23.5 55t56.5 23q33 0 56.5-23t23.5-55q0-16-6-29.5T537-292l-57-56Zm0-492v132q0 34 23.5 57t57.5 23q18 0 33.5-7.5T622-658l18-22q74 42 117 117t43 163q0 134-93 227T480-80q-134 0-227-93t-93-227q0-129 86.5-245T480-840Z"/></svg></span> Search - Crayon Shin-chan: Dengeki! Buta no Hizume Daisakusen </h2>
|
||||
|
||||
</div>
|
||||
|
||||
|
|
@ -665,10 +668,10 @@
|
|||
|
||||
<!-- Previous Page Link -->
|
||||
|
||||
<a class='pagination-item active'>1</a><a href='/page/2/?s=Crayon Shin-chan: Dengeki! Buta no Hizume Daisakusen 1998' class='pagination-item'>2</a><a href='/page/2/?s=Crayon Shin-chan: Dengeki! Buta no Hizume Daisakusen 1998' class='pagination-item'>2</a>
|
||||
<a class='pagination-item active'>1</a><a href='/page/2/?s=Crayon Shin-chan: Dengeki! Buta no Hizume Daisakusen' class='pagination-item'>2</a><a href='/page/2/?s=Crayon Shin-chan: Dengeki! Buta no Hizume Daisakusen' class='pagination-item'>2</a>
|
||||
|
||||
<!-- Next Page Link -->
|
||||
<a href="/page/2/?s=Crayon Shin-chan: Dengeki! Buta no Hizume Daisakusen 1998" class="pagination-item pagination-next">
|
||||
<a href="/page/2/?s=Crayon Shin-chan: Dengeki! Buta no Hizume Daisakusen" class="pagination-item pagination-next">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="h-4 w-4">
|
||||
<polyline points="9 18 15 12 9 6"></polyline>
|
||||
</svg>
|
||||
|
|
@ -128,6 +128,9 @@
|
|||
<li><a href="/category/jiohotstar/" class="dropdown-item">JioHotstar</a></li>
|
||||
<li><a href="/category/disney/" class="dropdown-item">Disney+</a></li>
|
||||
<li><a href="/category/Apple_TV/" class="dropdown-item">Apple TV+</a></li>
|
||||
<li><a href="/category/hbo_max/" class="dropdown-item">HBO Max</a></li>
|
||||
<li><a href="/category/hulu/" class="dropdown-item">Hulu</a></li>
|
||||
<li><a href="/category/crave/" class="dropdown-item">Crave</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
|
|
@ -223,7 +226,7 @@
|
|||
<section class="latest-releases">
|
||||
<div class="latest-releases-header">
|
||||
<h2 class="latest-releases-title">
|
||||
<span><svg style="vertical-align: bottom;" xmlns="http://www.w3.org/2000/svg" height="32px" viewBox="0 -960 960 960" width="32px" fill="#e3e3e3"><path d="M240-400q0 52 21 98.5t60 81.5q-1-5-1-9v-9q0-32 12-60t35-51l113-111 113 111q23 23 35 51t12 60v9q0 4-1 9 39-35 60-81.5t21-98.5q0-50-18.5-94.5T648-574q-20 13-42 19.5t-45 6.5q-62 0-107.5-41T401-690q-39 33-69 68.5t-50.5 72Q261-513 250.5-475T240-400Zm240 52-57 56q-11 11-17 25t-6 29q0 32 23.5 55t56.5 23q33 0 56.5-23t23.5-55q0-16-6-29.5T537-292l-57-56Zm0-492v132q0 34 23.5 57t57.5 23q18 0 33.5-7.5T622-658l18-22q74 42 117 117t43 163q0 134-93 227T480-80q-134 0-227-93t-93-227q0-129 86.5-245T480-840Z"/></svg></span> Latest Releases </h2>
|
||||
<span><svg style="vertical-align: bottom;" xmlns="http://www.w3.org/2000/svg" height="32px" viewBox="0 -960 960 960" width="32px" fill="#e3e3e3"><path d="M240-400q0 52 21 98.5t60 81.5q-1-5-1-9v-9q0-32 12-60t35-51l113-111 113 111q23 23 35 51t12 60v9q0 4-1 9 39-35 60-81.5t21-98.5q0-50-18.5-94.5T648-574q-20 13-42 19.5t-45 6.5q-62 0-107.5-41T401-690q-39 33-69 68.5t-50.5 72Q261-513 250.5-475T240-400Zm240 52-57 56q-11 11-17 25t-6 29q0 32 23.5 55t56.5 23q33 0 56.5-23t23.5-55q0-16-6-29.5T537-292l-57-56Zm0-492v132q0 34 23.5 57t57.5 23q18 0 33.5-7.5T622-658l18-22q74 42 117 117t43 163q0 134-93 227T480-80q-134 0-227-93t-93-227q0-129 86.5-245T480-840Z"/></svg></span> Search - Dark </h2>
|
||||
|
||||
</div>
|
||||
|
||||
|
|
@ -344,6 +347,82 @@
|
|||
|
||||
|
||||
|
||||
<a href="/dark-moon-the-blood-altar-series-5268/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/3xMrv5JDbgy1AUj6GURBaTv8sNt.jpg" alt="DARK MOON: THE BLOOD ALTAR" class="w-full h-full object-cover">
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
|
||||
<span class="movie-card-format">Animation</span>
|
||||
|
||||
<span class="movie-card-format">Sci-Fi & Fantasy</span>
|
||||
|
||||
<span class="movie-card-format">Hindi</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">Series</span>
|
||||
|
||||
<span class="movie-card-format">Anime</span>
|
||||
|
||||
<span class="movie-card-format">Amazon Prime Video</span>
|
||||
|
||||
<span class="movie-card-format">Crunchyroll</span>
|
||||
|
||||
<span class="movie-card-format">Japanese</span>
|
||||
|
||||
<!--<span class="movie-card-format">HEVC</span>-->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">DARK MOON: THE BLOOD ALTAR</h3>
|
||||
<p class="movie-card-meta">2026 • S01 EP01 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<a href="/dark-city-movie-5198/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/tNPEGju4DpTdbhBphNmZoEi9Bd3.jpg" alt="Dark City" class="w-full h-full object-cover">
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
|
||||
<span class="movie-card-format">Science Fiction</span>
|
||||
|
||||
<span class="movie-card-format">Mystery</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">2160p</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
|
||||
<span class="movie-card-format">HEVC</span>
|
||||
|
||||
<span class="movie-card-format">BluRay</span>
|
||||
|
||||
<span class="movie-card-format">REMUX</span>
|
||||
|
||||
<span class="movie-card-format">Movies</span>
|
||||
|
||||
<span class="movie-card-format">DV HDR</span>
|
||||
|
||||
<span class="movie-card-format">VOD</span>
|
||||
|
||||
<!--<span class="movie-card-format">HEVC</span>-->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Dark City</h3>
|
||||
<p class="movie-card-meta">1998 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<a href="/yandere-dark-elf-she-chased-me-all-the-way-from-another-world-series-4443/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/eCWtp80MCEBPMuRmAjm2zNMgOSW.jpg" alt="Yandere Dark Elf: She Chased Me All the Way from Another World!" class="w-full h-full object-cover">
|
||||
|
|
@ -582,78 +661,6 @@
|
|||
|
||||
|
||||
|
||||
<a href="/elvira-mistress-of-the-dark-movie-2846/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/pCbjmtAsrcJVYelv2OoRWwZ8uro.jpg" alt="Elvira: Mistress of the Dark" class="w-full h-full object-cover">
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
|
||||
<span class="movie-card-format">Fantasy</span>
|
||||
|
||||
<span class="movie-card-format">Horror</span>
|
||||
|
||||
<span class="movie-card-format">Comedy</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">2160p</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
|
||||
<span class="movie-card-format">BluRay</span>
|
||||
|
||||
<span class="movie-card-format">REMUX</span>
|
||||
|
||||
<span class="movie-card-format">Movies</span>
|
||||
|
||||
<!--<span class="movie-card-format">HEVC</span>-->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Elvira: Mistress of the Dark</h3>
|
||||
<p class="movie-card-meta">1988 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<a href="/zero-dark-thirty-movie-2786/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/original/dVodtdWDkLsutWGgEEWSFnnH6ei.jpg" alt="Zero Dark Thirty" class="w-full h-full object-cover">
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
|
||||
<span class="movie-card-format">Drama</span>
|
||||
|
||||
<span class="movie-card-format">Thriller</span>
|
||||
|
||||
<span class="movie-card-format">Dual Language</span>
|
||||
|
||||
<span class="movie-card-format">2160p</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
|
||||
<span class="movie-card-format">HDR</span>
|
||||
|
||||
<span class="movie-card-format">BluRay</span>
|
||||
|
||||
<span class="movie-card-format">Movies</span>
|
||||
|
||||
<span class="movie-card-format">10Bit</span>
|
||||
|
||||
<!--<span class="movie-card-format">HEVC</span>-->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Zero Dark Thirty</h3>
|
||||
<p class="movie-card-meta">2012 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<!--<a href="movie-static-movie.html" class="movie-card">-->
|
||||
<!-- <div class="movie-card-image">-->
|
||||
<!-- <img src="images/placeholder.svg" alt="Dune: Part Two" class="w-full h-full object-cover">-->
|
||||
|
|
@ -683,10 +690,10 @@
|
|||
|
||||
<!-- Previous Page Link -->
|
||||
|
||||
<a class='pagination-item active'>1</a><a href='/page/2/?s=Dark 2017' class='pagination-item'>2</a><a href='/page/2/?s=Dark 2017' class='pagination-item'>2</a>
|
||||
<a class='pagination-item active'>1</a><a href='/page/2/?s=Dark' class='pagination-item'>2</a><a href='/page/4/?s=Dark' class='pagination-item'>4</a>
|
||||
|
||||
<!-- Next Page Link -->
|
||||
<a href="/page/2/?s=Dark 2017" class="pagination-item pagination-next">
|
||||
<a href="/page/2/?s=Dark" class="pagination-item pagination-next">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="h-4 w-4">
|
||||
<polyline points="9 18 15 12 9 6"></polyline>
|
||||
</svg>
|
||||
|
|
@ -128,6 +128,9 @@
|
|||
<li><a href="/category/jiohotstar/" class="dropdown-item">JioHotstar</a></li>
|
||||
<li><a href="/category/disney/" class="dropdown-item">Disney+</a></li>
|
||||
<li><a href="/category/Apple_TV/" class="dropdown-item">Apple TV+</a></li>
|
||||
<li><a href="/category/hbo_max/" class="dropdown-item">HBO Max</a></li>
|
||||
<li><a href="/category/hulu/" class="dropdown-item">Hulu</a></li>
|
||||
<li><a href="/category/crave/" class="dropdown-item">Crave</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
|
|
@ -223,7 +226,7 @@
|
|||
<section class="latest-releases">
|
||||
<div class="latest-releases-header">
|
||||
<h2 class="latest-releases-title">
|
||||
<span><svg style="vertical-align: bottom;" xmlns="http://www.w3.org/2000/svg" height="32px" viewBox="0 -960 960 960" width="32px" fill="#e3e3e3"><path d="M240-400q0 52 21 98.5t60 81.5q-1-5-1-9v-9q0-32 12-60t35-51l113-111 113 111q23 23 35 51t12 60v9q0 4-1 9 39-35 60-81.5t21-98.5q0-50-18.5-94.5T648-574q-20 13-42 19.5t-45 6.5q-62 0-107.5-41T401-690q-39 33-69 68.5t-50.5 72Q261-513 250.5-475T240-400Zm240 52-57 56q-11 11-17 25t-6 29q0 32 23.5 55t56.5 23q33 0 56.5-23t23.5-55q0-16-6-29.5T537-292l-57-56Zm0-492v132q0 34 23.5 57t57.5 23q18 0 33.5-7.5T622-658l18-22q74 42 117 117t43 163q0 134-93 227T480-80q-134 0-227-93t-93-227q0-129 86.5-245T480-840Z"/></svg></span> Latest Releases </h2>
|
||||
<span><svg style="vertical-align: bottom;" xmlns="http://www.w3.org/2000/svg" height="32px" viewBox="0 -960 960 960" width="32px" fill="#e3e3e3"><path d="M240-400q0 52 21 98.5t60 81.5q-1-5-1-9v-9q0-32 12-60t35-51l113-111 113 111q23 23 35 51t12 60v9q0 4-1 9 39-35 60-81.5t21-98.5q0-50-18.5-94.5T648-574q-20 13-42 19.5t-45 6.5q-62 0-107.5-41T401-690q-39 33-69 68.5t-50.5 72Q261-513 250.5-475T240-400Zm240 52-57 56q-11 11-17 25t-6 29q0 32 23.5 55t56.5 23q33 0 56.5-23t23.5-55q0-16-6-29.5T537-292l-57-56Zm0-492v132q0 34 23.5 57t57.5 23q18 0 33.5-7.5T622-658l18-22q74 42 117 117t43 163q0 134-93 227T480-80q-134 0-227-93t-93-227q0-129 86.5-245T480-840Z"/></svg></span> Search - Dexter: Original Sin </h2>
|
||||
|
||||
</div>
|
||||
|
||||
|
|
@ -128,6 +128,9 @@
|
|||
<li><a href="/category/jiohotstar/" class="dropdown-item">JioHotstar</a></li>
|
||||
<li><a href="/category/disney/" class="dropdown-item">Disney+</a></li>
|
||||
<li><a href="/category/Apple_TV/" class="dropdown-item">Apple TV+</a></li>
|
||||
<li><a href="/category/hbo_max/" class="dropdown-item">HBO Max</a></li>
|
||||
<li><a href="/category/hulu/" class="dropdown-item">Hulu</a></li>
|
||||
<li><a href="/category/crave/" class="dropdown-item">Crave</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
|
|
@ -223,7 +226,7 @@
|
|||
<section class="latest-releases">
|
||||
<div class="latest-releases-header">
|
||||
<h2 class="latest-releases-title">
|
||||
<span><svg style="vertical-align: bottom;" xmlns="http://www.w3.org/2000/svg" height="32px" viewBox="0 -960 960 960" width="32px" fill="#e3e3e3"><path d="M240-400q0 52 21 98.5t60 81.5q-1-5-1-9v-9q0-32 12-60t35-51l113-111 113 111q23 23 35 51t12 60v9q0 4-1 9 39-35 60-81.5t21-98.5q0-50-18.5-94.5T648-574q-20 13-42 19.5t-45 6.5q-62 0-107.5-41T401-690q-39 33-69 68.5t-50.5 72Q261-513 250.5-475T240-400Zm240 52-57 56q-11 11-17 25t-6 29q0 32 23.5 55t56.5 23q33 0 56.5-23t23.5-55q0-16-6-29.5T537-292l-57-56Zm0-492v132q0 34 23.5 57t57.5 23q18 0 33.5-7.5T622-658l18-22q74 42 117 117t43 163q0 134-93 227T480-80q-134 0-227-93t-93-227q0-129 86.5-245T480-840Z"/></svg></span> Latest Releases </h2>
|
||||
<span><svg style="vertical-align: bottom;" xmlns="http://www.w3.org/2000/svg" height="32px" viewBox="0 -960 960 960" width="32px" fill="#e3e3e3"><path d="M240-400q0 52 21 98.5t60 81.5q-1-5-1-9v-9q0-32 12-60t35-51l113-111 113 111q23 23 35 51t12 60v9q0 4-1 9 39-35 60-81.5t21-98.5q0-50-18.5-94.5T648-574q-20 13-42 19.5t-45 6.5q-62 0-107.5-41T401-690q-39 33-69 68.5t-50.5 72Q261-513 250.5-475T240-400Zm240 52-57 56q-11 11-17 25t-6 29q0 32 23.5 55t56.5 23q33 0 56.5-23t23.5-55q0-16-6-29.5T537-292l-57-56Zm0-492v132q0 34 23.5 57t57.5 23q18 0 33.5-7.5T622-658l18-22q74 42 117 117t43 163q0 134-93 227T480-80q-134 0-227-93t-93-227q0-129 86.5-245T480-840Z"/></svg></span> Search - Dexter: Resurrection </h2>
|
||||
|
||||
</div>
|
||||
|
||||
411
src/source/__fixtures__/FourKHDHub/https:4khdhub.dadsF1
generated
Normal file
411
src/source/__fixtures__/FourKHDHub/https:4khdhub.dadsF1
generated
Normal file
|
|
@ -0,0 +1,411 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" class="dark">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>4KHDHub - High Quality Movies and TV Shows</title>
|
||||
|
||||
<script>
|
||||
!function(){try{"light"===localStorage.getItem("theme")?(document.documentElement.classList.remove("dark"),document.documentElement.classList.add("light")):(document.documentElement.classList.add("dark"),document.documentElement.classList.remove("light"))}catch(e){console.error("Theme initialization failed:",e)}}();
|
||||
</script>
|
||||
|
||||
|
||||
<meta name="description" content="Download high quality movies and TV shows in UHD, 4K HDR, 1080p and more formats">
|
||||
|
||||
<!-- Font -->
|
||||
<link rel="dns-prefetch" href="https://fonts.gstatic.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous">
|
||||
|
||||
|
||||
<!-- Preload the logo -->
|
||||
<link rel="preload" href="/images/4KHDHUB-Dark-Logo.png" as="image" type="image/png" />
|
||||
<link rel="preload" href="/images/4KHDHUB-Bright-Logo.png" as="image" type="image/png" />
|
||||
|
||||
<!-- Theme script to prevent flash -->
|
||||
|
||||
|
||||
|
||||
<script data-cfasync="false" src="//dl4d3y1ajyv3q.cloudfront.net/?aydld=1221937"></script>
|
||||
|
||||
|
||||
<!-- Link to Google Fonts Stylesheets -->
|
||||
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
|
||||
<link href="https://fonts.cdnfonts.com/css/trebuchet-ms-2" rel="stylesheet">
|
||||
|
||||
<link rel="stylesheet" href="/css/styles.css?v=0.14.69c19">
|
||||
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<link rel="shortcut icon" href="/favicon.ico" />
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
||||
<meta name="apple-mobile-web-app-title" content="4K-HDHub" />
|
||||
<link rel="manifest" href="/site.webmanifest" />
|
||||
|
||||
<!-- JavaScript to apply font-display: swap -->
|
||||
<script type="text/javascript">
|
||||
!function(e,n,t){"use strict";var o="https://fonts.googleapis.com/css?family=Open+Sans",r="__3perf_googleFonts_5fd56";function c(e){(n.head||n.body).appendChild(e)}function a(){var e=n.createElement("link");e.href=o,e.rel="stylesheet",c(e)}function f(e){if(!n.getElementById(r)){var t=n.createElement("style");t.id=r,c(t)}n.getElementById(r).innerHTML=e}e.FontFace&&e.FontFace.prototype.hasOwnProperty("display")?(t[r]&&f(t[r]),fetch(o).then(function(e){return e.text()}).then(function(e){return e.replace(/@font-face {/g,"@font-face{font-display:swap;")}).then(function(e){return t[r]=e}).then(f).catch(a)):a()}(window,document,localStorage);
|
||||
</script>
|
||||
<!-- Google tag (gtag.js) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-LL0RL7VX47"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('js', new Date());
|
||||
|
||||
gtag('config', 'G-LL0RL7VX47');
|
||||
</script>
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div class="flex min-h-screen flex-col">
|
||||
<!-- Header -->
|
||||
<!-- Header with truly unified navigation -->
|
||||
<header class="sticky top-0 z-50 w-full">
|
||||
<div class="header">
|
||||
<div class="container flex h-14 items-center justify-between">
|
||||
<!-- Logo and mobile menu toggle -->
|
||||
<div class="flex items-center">
|
||||
<button id="menu-toggle" class="menu-toggle md:hidden">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="h-5 w-5">
|
||||
<line x1="3" y1="12" x2="21" y2="12"></line>
|
||||
<line x1="3" y1="6" x2="21" y2="6"></line>
|
||||
<line x1="3" y1="18" x2="21" y2="18"></line>
|
||||
</svg>
|
||||
<span class="sr-only">Toggle menu</span>
|
||||
</button>
|
||||
<a href="/" class="navbar-brand">
|
||||
<img id="logo" class="h-8 w-auto" src="/images/4KHDHUB-Bright-Logo.png" alt="4KHDHub logo">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<!-- SINGLE Navigation - Visible on desktop, hidden on mobile -->
|
||||
<nav id="main-nav" class="main-nav">
|
||||
<ul class="nav-list">
|
||||
<li class="nav-item"><a href="/" class="nav-link">Home</a></li>
|
||||
|
||||
<li class="nav-item dropdown">
|
||||
<a href="#" class="nav-link dropdown-toggle">
|
||||
Movies
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="dropdown-indicator h-4 w-4">
|
||||
<polyline points="6 9 12 15 18 9"></polyline>
|
||||
</svg>
|
||||
</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="/category/movies/" class="dropdown-item">Latest Movies</a></li>
|
||||
<li><a href="/category/hindi-movies/" class="dropdown-item">Hindi Movies</a></li>
|
||||
<li><a href="/category/english-movies/" class="dropdown-item">English Movies</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li class="nav-item dropdown">
|
||||
<a href="#" class="nav-link dropdown-toggle">
|
||||
Web Series
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="dropdown-indicator h-4 w-4">
|
||||
<polyline points="6 9 12 15 18 9"></polyline>
|
||||
</svg>
|
||||
</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="/category/series/" class="dropdown-item">Latest Episodes</a></li>
|
||||
<li><a href="/category/korean-series/" class="dropdown-item">Korean</a></li>
|
||||
<li><a href="/category/drama-series/" class="dropdown-item">Drama</a></li>
|
||||
<li><a href="/category/hindi-series/" class="dropdown-item">Hindi Series</a></li>
|
||||
<li><a href="/category/english-series/" class="dropdown-item">English Series</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li class="nav-item dropdown">
|
||||
<a href="#" class="nav-link dropdown-toggle">
|
||||
OTT
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="dropdown-indicator h-4 w-4">
|
||||
<polyline points="6 9 12 15 18 9"></polyline>
|
||||
</svg>
|
||||
</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="/category/netflix/" class="dropdown-item">Netflix</a></li>
|
||||
<li><a href="/category/amazon_prime_video/" class="dropdown-item">Amazon Prime Video</a></li>
|
||||
<li><a href="/category/jiohotstar/" class="dropdown-item">JioHotstar</a></li>
|
||||
<li><a href="/category/disney/" class="dropdown-item">Disney+</a></li>
|
||||
<li><a href="/category/Apple_TV/" class="dropdown-item">Apple TV+</a></li>
|
||||
<li><a href="/category/hbo_max/" class="dropdown-item">HBO Max</a></li>
|
||||
<li><a href="/category/hulu/" class="dropdown-item">Hulu</a></li>
|
||||
<li><a href="/category/crave/" class="dropdown-item">Crave</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
|
||||
<li class="nav-item"><a href="/category/anime/" class="nav-link">Anime</a></li>
|
||||
<li class="nav-item"><a href="/category/2160p-HDR/" class="nav-link">4K HDR</a></li>
|
||||
<li class="nav-item"><a href="/category/imdb/" class="nav-link">Top IMdb</a></li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<!-- Search and Theme Toggle -->
|
||||
<div class="flex items-center">
|
||||
<button id="search-toggle" class="search-toggle">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="h-5 w-5">
|
||||
<circle cx="11" cy="11" r="8"></circle>
|
||||
<line x1="21" y1="21" x2="16.65" y2="16.65"></line>
|
||||
</svg>
|
||||
<span class="sr-only">Search</span>
|
||||
</button>
|
||||
|
||||
<div class="search-container hidden md:flex">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="search-icon h-4 w-4">
|
||||
<circle cx="11" cy="11" r="8"></circle>
|
||||
<line x1="21" y1="21" x2="16.65" y2="16.65"></line>
|
||||
</svg>
|
||||
for
|
||||
<input type="search" id="search" placeholder="Search movies & series" class="search-input">
|
||||
</div>
|
||||
|
||||
<button id="theme-toggle" class="theme-toggle">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="theme-icon h-5 w-5">
|
||||
<circle cx="12" cy="12" r="5"></circle>
|
||||
<line x1="12" y1="1" x2="12" y2="3"></line>
|
||||
<line x1="12" y1="21" x2="12" y2="23"></line>
|
||||
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
|
||||
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
|
||||
<line x1="1" y1="12" x2="3" y2="12"></line>
|
||||
<line x1="21" y1="12" x2="23" y2="12"></line>
|
||||
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
|
||||
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
|
||||
</svg>
|
||||
<span class="sr-only">Toggle theme</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Mobile Menu Backdrop (only shown when menu is open) -->
|
||||
<div id="mobile-menu-backdrop" class="fixed inset-0 bg-black/70 hidden"></div>
|
||||
|
||||
<!-- Close button for mobile menu (only shown when menu is open) -->
|
||||
<button id="close-mobile-menu" class="fixed top-4 right-4 p-2 rounded-full z-[60] hidden">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="h-5 w-5">
|
||||
<line x1="18" y1="6" x2="6" y2="18"></line>
|
||||
<line x1="6" y1="6" x2="18" y2="18"></line>
|
||||
</svg>
|
||||
</button>
|
||||
|
||||
<!-- Search Overlay -->
|
||||
<div id="search-overlay" class="fixed inset-0 z-50 hidden">
|
||||
<div class="fixed" id="search-backdrop"></div>
|
||||
|
||||
|
||||
<button id="close-search" class="absolute right-4 top-4 p-2 rounded-full">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="h-5 w-5">
|
||||
<line x1="18" y1="6" x2="6" y2="18"></line>
|
||||
<line x1="6" y1="6" x2="18" y2="18"></line>
|
||||
</svg>
|
||||
<span class="sr-only">Close</span>
|
||||
</button>
|
||||
|
||||
<form action="/" method="get" class="search-form">
|
||||
<div class="search-input-container">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="search-icon-overlay">
|
||||
<circle cx="11" cy="11" r="8"></circle>
|
||||
<line x1="21" y1="21" x2="16.65" y2="16.65"></line>
|
||||
</svg>
|
||||
<input type="search" name="s" placeholder="Search Movies & TV-Shows" class="search-input-overlay" autofocus autocomplete="off">
|
||||
</div>
|
||||
<button type="submit" class="search-submit">
|
||||
Search
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<!-- Main Content -->
|
||||
<main class="flex-1">
|
||||
<div class="container">
|
||||
<section class="latest-releases">
|
||||
<div class="latest-releases-header">
|
||||
<h2 class="latest-releases-title">
|
||||
<span><svg style="vertical-align: bottom;" xmlns="http://www.w3.org/2000/svg" height="32px" viewBox="0 -960 960 960" width="32px" fill="#e3e3e3"><path d="M240-400q0 52 21 98.5t60 81.5q-1-5-1-9v-9q0-32 12-60t35-51l113-111 113 111q23 23 35 51t12 60v9q0 4-1 9 39-35 60-81.5t21-98.5q0-50-18.5-94.5T648-574q-20 13-42 19.5t-45 6.5q-62 0-107.5-41T401-690q-39 33-69 68.5t-50.5 72Q261-513 250.5-475T240-400Zm240 52-57 56q-11 11-17 25t-6 29q0 32 23.5 55t56.5 23q33 0 56.5-23t23.5-55q0-16-6-29.5T537-292l-57-56Zm0-492v132q0 34 23.5 57t57.5 23q18 0 33.5-7.5T622-658l18-22q74 42 117 117t43 163q0 134-93 227T480-80q-134 0-227-93t-93-227q0-129 86.5-245T480-840Z"/></svg></span> Search - F1 </h2>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="card-grid">
|
||||
<!-- Movie Cards -->
|
||||
|
||||
|
||||
|
||||
<a href="/f1-the-movie-movie-3084/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/original/9JePWGvgg1t4BOojyZEVQdOWjXO.jpg" alt="F1 The Movie" class="w-full h-full object-cover">
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
|
||||
<span class="movie-card-format">Drama</span>
|
||||
|
||||
<span class="movie-card-format">Action</span>
|
||||
|
||||
<span class="movie-card-format">Hindi</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">2160p</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
|
||||
<span class="movie-card-format">WEB-DL</span>
|
||||
|
||||
<span class="movie-card-format">Tamil</span>
|
||||
|
||||
<span class="movie-card-format">BluRay</span>
|
||||
|
||||
<span class="movie-card-format">Movies</span>
|
||||
|
||||
<span class="movie-card-format">10Bit</span>
|
||||
|
||||
<span class="movie-card-format">DV HDR</span>
|
||||
|
||||
<span class="movie-card-format">Telugu</span>
|
||||
|
||||
<span class="movie-card-format">Multi Audios</span>
|
||||
|
||||
<span class="movie-card-format">SDR</span>
|
||||
|
||||
<!--<span class="movie-card-format">HEVC</span>-->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">F1 The Movie</h3>
|
||||
<p class="movie-card-meta">2025 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<a href="/f1-the-academy-series-1226/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/nf94vcBfoODZJOk0P2kXRPqhd1B.jpg" alt="F1: The Academy" class="w-full h-full object-cover">
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
|
||||
<span class="movie-card-format">Documentary</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">Series</span>
|
||||
|
||||
<!--<span class="movie-card-format">HEVC</span>-->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">F1: The Academy</h3>
|
||||
<p class="movie-card-meta">2025 • S01 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<!--<a href="movie-static-movie.html" class="movie-card">-->
|
||||
<!-- <div class="movie-card-image">-->
|
||||
<!-- <img src="images/placeholder.svg" alt="Dune: Part Two" class="w-full h-full object-cover">-->
|
||||
<!-- <div class="movie-card-overlay">-->
|
||||
<!-- <div class="movie-card-formats">-->
|
||||
<!-- <span class="movie-card-format">2160p</span>-->
|
||||
<!-- <span class="movie-card-format">4K HDR</span>-->
|
||||
<!-- <span class="movie-card-format">HEVC</span>-->
|
||||
<!-- </div>-->
|
||||
<!-- </div>-->
|
||||
<!-- </div>-->
|
||||
<!-- <div class="movie-card-content">-->
|
||||
<!-- <h3 class="movie-card-title">Dune: Part Two</h3>-->
|
||||
<!-- <p class="movie-card-meta">2024</p>-->
|
||||
<!-- </div>-->
|
||||
<!--</a>-->
|
||||
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Pagination -->
|
||||
<div class="pagination-container">
|
||||
<div class="pagination-container">
|
||||
<div class="pagination">
|
||||
|
||||
|
||||
<!-- Previous Page Link -->
|
||||
|
||||
<a class='pagination-item active'>1</a>
|
||||
|
||||
<!-- Next Page Link -->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<!-- Footer -->
|
||||
<footer class="border-t bg-background">
|
||||
<div class="container py-8 md:py-12">
|
||||
<div class="grid grid-cols-1 gap-8 md:grid-cols-4 justify-center text-center md:text-left">
|
||||
<div class="space-y-4">
|
||||
<h3 class="text-lg font-semibold">4KHDHub</h3>
|
||||
<p class="text-sm text-muted-foreground">
|
||||
Your one-stop destination for high-quality movies and TV shows in various formats.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- Quick Links Section -->
|
||||
<div class="space-y-4">
|
||||
<h3 class="text-lg font-semibold">Quick Links</h3>
|
||||
<ul class="flex flex-wrap justify-center gap-4 text-sm">
|
||||
<li>
|
||||
<a href="/about" class="text-muted-foreground hover:text-primary">
|
||||
About Us
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/contact" class="text-muted-foreground hover:text-primary">
|
||||
Contact Us
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/dmca" class="text-muted-foreground hover:text-primary">
|
||||
DMCA
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/privacy-policy" class="text-muted-foreground hover:text-primary">
|
||||
Privacy Policy
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="space-y-4">
|
||||
<h3 class="text-lg font-semibold">Connect</h3>
|
||||
<p class="text-sm text-muted-foreground">Stay updated with the latest releases and news.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Footer Bottom -->
|
||||
<div class="mt-8 border-t pt-8 text-center">
|
||||
<p class="text-xs text-muted-foreground">© <span id="current-year">2025</span> 4KHDHub - All rights reserved.</p>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!-- Back to top button -->
|
||||
<button id="back-to-top" class="fixed bottom-6 right-6 z-50 rounded-full shadow-md transition-opacity duration-300 opacity-0 pointer-events-none bg-primary text-primary-foreground p-2" aria-label="Back to top">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path d="m18 15-6-6-6 6" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<script src="/js/main.js?v=0.14.69c19"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -128,6 +128,9 @@
|
|||
<li><a href="/category/jiohotstar/" class="dropdown-item">JioHotstar</a></li>
|
||||
<li><a href="/category/disney/" class="dropdown-item">Disney+</a></li>
|
||||
<li><a href="/category/Apple_TV/" class="dropdown-item">Apple TV+</a></li>
|
||||
<li><a href="/category/hbo_max/" class="dropdown-item">HBO Max</a></li>
|
||||
<li><a href="/category/hulu/" class="dropdown-item">Hulu</a></li>
|
||||
<li><a href="/category/crave/" class="dropdown-item">Crave</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
|
|
@ -223,7 +226,7 @@
|
|||
<section class="latest-releases">
|
||||
<div class="latest-releases-header">
|
||||
<h2 class="latest-releases-title">
|
||||
<span><svg style="vertical-align: bottom;" xmlns="http://www.w3.org/2000/svg" height="32px" viewBox="0 -960 960 960" width="32px" fill="#e3e3e3"><path d="M240-400q0 52 21 98.5t60 81.5q-1-5-1-9v-9q0-32 12-60t35-51l113-111 113 111q23 23 35 51t12 60v9q0 4-1 9 39-35 60-81.5t21-98.5q0-50-18.5-94.5T648-574q-20 13-42 19.5t-45 6.5q-62 0-107.5-41T401-690q-39 33-69 68.5t-50.5 72Q261-513 250.5-475T240-400Zm240 52-57 56q-11 11-17 25t-6 29q0 32 23.5 55t56.5 23q33 0 56.5-23t23.5-55q0-16-6-29.5T537-292l-57-56Zm0-492v132q0 34 23.5 57t57.5 23q18 0 33.5-7.5T622-658l18-22q74 42 117 117t43 163q0 134-93 227T480-80q-134 0-227-93t-93-227q0-129 86.5-245T480-840Z"/></svg></span> Latest Releases </h2>
|
||||
<span><svg style="vertical-align: bottom;" xmlns="http://www.w3.org/2000/svg" height="32px" viewBox="0 -960 960 960" width="32px" fill="#e3e3e3"><path d="M240-400q0 52 21 98.5t60 81.5q-1-5-1-9v-9q0-32 12-60t35-51l113-111 113 111q23 23 35 51t12 60v9q0 4-1 9 39-35 60-81.5t21-98.5q0-50-18.5-94.5T648-574q-20 13-42 19.5t-45 6.5q-62 0-107.5-41T401-690q-39 33-69 68.5t-50.5 72Q261-513 250.5-475T240-400Zm240 52-57 56q-11 11-17 25t-6 29q0 32 23.5 55t56.5 23q33 0 56.5-23t23.5-55q0-16-6-29.5T537-292l-57-56Zm0-492v132q0 34 23.5 57t57.5 23q18 0 33.5-7.5T622-658l18-22q74 42 117 117t43 163q0 134-93 227T480-80q-134 0-227-93t-93-227q0-129 86.5-245T480-840Z"/></svg></span> Search - Lovely Runner </h2>
|
||||
|
||||
</div>
|
||||
|
||||
|
|
@ -128,6 +128,9 @@
|
|||
<li><a href="/category/jiohotstar/" class="dropdown-item">JioHotstar</a></li>
|
||||
<li><a href="/category/disney/" class="dropdown-item">Disney+</a></li>
|
||||
<li><a href="/category/Apple_TV/" class="dropdown-item">Apple TV+</a></li>
|
||||
<li><a href="/category/hbo_max/" class="dropdown-item">HBO Max</a></li>
|
||||
<li><a href="/category/hulu/" class="dropdown-item">Hulu</a></li>
|
||||
<li><a href="/category/crave/" class="dropdown-item">Crave</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
|
|
@ -223,7 +226,7 @@
|
|||
<section class="latest-releases">
|
||||
<div class="latest-releases-header">
|
||||
<h2 class="latest-releases-title">
|
||||
<span><svg style="vertical-align: bottom;" xmlns="http://www.w3.org/2000/svg" height="32px" viewBox="0 -960 960 960" width="32px" fill="#e3e3e3"><path d="M240-400q0 52 21 98.5t60 81.5q-1-5-1-9v-9q0-32 12-60t35-51l113-111 113 111q23 23 35 51t12 60v9q0 4-1 9 39-35 60-81.5t21-98.5q0-50-18.5-94.5T648-574q-20 13-42 19.5t-45 6.5q-62 0-107.5-41T401-690q-39 33-69 68.5t-50.5 72Q261-513 250.5-475T240-400Zm240 52-57 56q-11 11-17 25t-6 29q0 32 23.5 55t56.5 23q33 0 56.5-23t23.5-55q0-16-6-29.5T537-292l-57-56Zm0-492v132q0 34 23.5 57t57.5 23q18 0 33.5-7.5T622-658l18-22q74 42 117 117t43 163q0 134-93 227T480-80q-134 0-227-93t-93-227q0-129 86.5-245T480-840Z"/></svg></span> Latest Releases </h2>
|
||||
<span><svg style="vertical-align: bottom;" xmlns="http://www.w3.org/2000/svg" height="32px" viewBox="0 -960 960 960" width="32px" fill="#e3e3e3"><path d="M240-400q0 52 21 98.5t60 81.5q-1-5-1-9v-9q0-32 12-60t35-51l113-111 113 111q23 23 35 51t12 60v9q0 4-1 9 39-35 60-81.5t21-98.5q0-50-18.5-94.5T648-574q-20 13-42 19.5t-45 6.5q-62 0-107.5-41T401-690q-39 33-69 68.5t-50.5 72Q261-513 250.5-475T240-400Zm240 52-57 56q-11 11-17 25t-6 29q0 32 23.5 55t56.5 23q33 0 56.5-23t23.5-55q0-16-6-29.5T537-292l-57-56Zm0-492v132q0 34 23.5 57t57.5 23q18 0 33.5-7.5T622-658l18-22q74 42 117 117t43 163q0 134-93 227T480-80q-134 0-227-93t-93-227q0-129 86.5-245T480-840Z"/></svg></span> Search - Stranger Things </h2>
|
||||
|
||||
</div>
|
||||
|
||||
|
|
@ -128,6 +128,9 @@
|
|||
<li><a href="/category/jiohotstar/" class="dropdown-item">JioHotstar</a></li>
|
||||
<li><a href="/category/disney/" class="dropdown-item">Disney+</a></li>
|
||||
<li><a href="/category/Apple_TV/" class="dropdown-item">Apple TV+</a></li>
|
||||
<li><a href="/category/hbo_max/" class="dropdown-item">HBO Max</a></li>
|
||||
<li><a href="/category/hulu/" class="dropdown-item">Hulu</a></li>
|
||||
<li><a href="/category/crave/" class="dropdown-item">Crave</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
|
|
@ -223,7 +226,7 @@
|
|||
<section class="latest-releases">
|
||||
<div class="latest-releases-header">
|
||||
<h2 class="latest-releases-title">
|
||||
<span><svg style="vertical-align: bottom;" xmlns="http://www.w3.org/2000/svg" height="32px" viewBox="0 -960 960 960" width="32px" fill="#e3e3e3"><path d="M240-400q0 52 21 98.5t60 81.5q-1-5-1-9v-9q0-32 12-60t35-51l113-111 113 111q23 23 35 51t12 60v9q0 4-1 9 39-35 60-81.5t21-98.5q0-50-18.5-94.5T648-574q-20 13-42 19.5t-45 6.5q-62 0-107.5-41T401-690q-39 33-69 68.5t-50.5 72Q261-513 250.5-475T240-400Zm240 52-57 56q-11 11-17 25t-6 29q0 32 23.5 55t56.5 23q33 0 56.5-23t23.5-55q0-16-6-29.5T537-292l-57-56Zm0-492v132q0 34 23.5 57t57.5 23q18 0 33.5-7.5T622-658l18-22q74 42 117 117t43 163q0 134-93 227T480-80q-134 0-227-93t-93-227q0-129 86.5-245T480-840Z"/></svg></span> Latest Releases </h2>
|
||||
<span><svg style="vertical-align: bottom;" xmlns="http://www.w3.org/2000/svg" height="32px" viewBox="0 -960 960 960" width="32px" fill="#e3e3e3"><path d="M240-400q0 52 21 98.5t60 81.5q-1-5-1-9v-9q0-32 12-60t35-51l113-111 113 111q23 23 35 51t12 60v9q0 4-1 9 39-35 60-81.5t21-98.5q0-50-18.5-94.5T648-574q-20 13-42 19.5t-45 6.5q-62 0-107.5-41T401-690q-39 33-69 68.5t-50.5 72Q261-513 250.5-475T240-400Zm240 52-57 56q-11 11-17 25t-6 29q0 32 23.5 55t56.5 23q33 0 56.5-23t23.5-55q0-16-6-29.5T537-292l-57-56Zm0-492v132q0 34 23.5 57t57.5 23q18 0 33.5-7.5T622-658l18-22q74 42 117 117t43 163q0 134-93 227T480-80q-134 0-227-93t-93-227q0-129 86.5-245T480-840Z"/></svg></span> Search - Superman </h2>
|
||||
|
||||
</div>
|
||||
|
||||
|
|
@ -268,6 +271,48 @@
|
|||
|
||||
|
||||
|
||||
<a href="/superman-ii-movie-926/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/3xk5cno9BHcnwc97XO9k21aI1Zi.jpg" alt="Superman II" class="w-full h-full object-cover">
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
|
||||
<span class="movie-card-format">Adventure</span>
|
||||
|
||||
<span class="movie-card-format">Action</span>
|
||||
|
||||
<span class="movie-card-format">Science Fiction</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">Dual Language</span>
|
||||
|
||||
<span class="movie-card-format">2160p</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
|
||||
<span class="movie-card-format">HDR</span>
|
||||
|
||||
<span class="movie-card-format">DoVi</span>
|
||||
|
||||
<span class="movie-card-format">BluRay</span>
|
||||
|
||||
<span class="movie-card-format">REMUX</span>
|
||||
|
||||
<span class="movie-card-format">Movies</span>
|
||||
|
||||
<!--<span class="movie-card-format">HEVC</span>-->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Superman II</h3>
|
||||
<p class="movie-card-meta">1980 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<a href="/superman-returns-movie-931/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/385XwTQZDpRX2d3kxtnpiLrjBXw.jpg" alt="Superman Returns" class="w-full h-full object-cover">
|
||||
|
|
@ -374,42 +419,6 @@
|
|||
|
||||
|
||||
|
||||
<a href="/superman-ii-movie-926/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/3xk5cno9BHcnwc97XO9k21aI1Zi.jpg" alt="Superman II" class="w-full h-full object-cover">
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
|
||||
<span class="movie-card-format">Adventure</span>
|
||||
|
||||
<span class="movie-card-format">Action</span>
|
||||
|
||||
<span class="movie-card-format">Science Fiction</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">2160p</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
|
||||
<span class="movie-card-format">HDR</span>
|
||||
|
||||
<span class="movie-card-format">BluRay</span>
|
||||
|
||||
<span class="movie-card-format">Movies</span>
|
||||
|
||||
<!--<span class="movie-card-format">HEVC</span>-->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Superman II</h3>
|
||||
<p class="movie-card-meta">1980 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<a href="/batman-v-superman-dawn-of-justice-movie-80/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/5UsK3grJvtQrtzEgqNlDljJW96w.jpg" alt="Batman v Superman: Dawn of Justice" class="w-full h-full object-cover">
|
||||
|
|
@ -510,6 +519,46 @@
|
|||
|
||||
|
||||
|
||||
<a href="/supermanbatman-public-enemies-movie-3627/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/izvMc22ywSLFWUXZEIuJJ8dms75.jpg" alt="Superman/Batman: Public Enemies" class="w-full h-full object-cover">
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
|
||||
<span class="movie-card-format">Adventure</span>
|
||||
|
||||
<span class="movie-card-format">Animation</span>
|
||||
|
||||
<span class="movie-card-format">Drama</span>
|
||||
|
||||
<span class="movie-card-format">Science Fiction</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">2160p</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
|
||||
<span class="movie-card-format">BluRay</span>
|
||||
|
||||
<span class="movie-card-format">Movies</span>
|
||||
|
||||
<span class="movie-card-format">DV HDR</span>
|
||||
|
||||
<span class="movie-card-format">SDR</span>
|
||||
|
||||
<!--<span class="movie-card-format">HEVC</span>-->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Superman/Batman: Public Enemies</h3>
|
||||
<p class="movie-card-meta">2009 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<!--<a href="movie-static-movie.html" class="movie-card">-->
|
||||
<!-- <div class="movie-card-image">-->
|
||||
<!-- <img src="images/placeholder.svg" alt="Dune: Part Two" class="w-full h-full object-cover">-->
|
||||
|
|
@ -128,6 +128,9 @@
|
|||
<li><a href="/category/jiohotstar/" class="dropdown-item">JioHotstar</a></li>
|
||||
<li><a href="/category/disney/" class="dropdown-item">Disney+</a></li>
|
||||
<li><a href="/category/Apple_TV/" class="dropdown-item">Apple TV+</a></li>
|
||||
<li><a href="/category/hbo_max/" class="dropdown-item">HBO Max</a></li>
|
||||
<li><a href="/category/hulu/" class="dropdown-item">Hulu</a></li>
|
||||
<li><a href="/category/crave/" class="dropdown-item">Crave</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
|
|
@ -223,7 +226,7 @@
|
|||
<section class="latest-releases">
|
||||
<div class="latest-releases-header">
|
||||
<h2 class="latest-releases-title">
|
||||
<span><svg style="vertical-align: bottom;" xmlns="http://www.w3.org/2000/svg" height="32px" viewBox="0 -960 960 960" width="32px" fill="#e3e3e3"><path d="M240-400q0 52 21 98.5t60 81.5q-1-5-1-9v-9q0-32 12-60t35-51l113-111 113 111q23 23 35 51t12 60v9q0 4-1 9 39-35 60-81.5t21-98.5q0-50-18.5-94.5T648-574q-20 13-42 19.5t-45 6.5q-62 0-107.5-41T401-690q-39 33-69 68.5t-50.5 72Q261-513 250.5-475T240-400Zm240 52-57 56q-11 11-17 25t-6 29q0 32 23.5 55t56.5 23q33 0 56.5-23t23.5-55q0-16-6-29.5T537-292l-57-56Zm0-492v132q0 34 23.5 57t57.5 23q18 0 33.5-7.5T622-658l18-22q74 42 117 117t43 163q0 134-93 227T480-80q-134 0-227-93t-93-227q0-129 86.5-245T480-840Z"/></svg></span> Latest Releases </h2>
|
||||
<span><svg style="vertical-align: bottom;" xmlns="http://www.w3.org/2000/svg" height="32px" viewBox="0 -960 960 960" width="32px" fill="#e3e3e3"><path d="M240-400q0 52 21 98.5t60 81.5q-1-5-1-9v-9q0-32 12-60t35-51l113-111 113 111q23 23 35 51t12 60v9q0 4-1 9 39-35 60-81.5t21-98.5q0-50-18.5-94.5T648-574q-20 13-42 19.5t-45 6.5q-62 0-107.5-41T401-690q-39 33-69 68.5t-50.5 72Q261-513 250.5-475T240-400Zm240 52-57 56q-11 11-17 25t-6 29q0 32 23.5 55t56.5 23q33 0 56.5-23t23.5-55q0-16-6-29.5T537-292l-57-56Zm0-492v132q0 34 23.5 57t57.5 23q18 0 33.5-7.5T622-658l18-22q74 42 117 117t43 163q0 134-93 227T480-80q-134 0-227-93t-93-227q0-129 86.5-245T480-840Z"/></svg></span> Search - The Devil's Bath </h2>
|
||||
|
||||
</div>
|
||||
|
||||
407
src/source/__fixtures__/FourKHDHub/https:4khdhub.dadsThepercent20Tank
generated
Normal file
407
src/source/__fixtures__/FourKHDHub/https:4khdhub.dadsThepercent20Tank
generated
Normal file
|
|
@ -0,0 +1,407 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" class="dark">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>4KHDHub - High Quality Movies and TV Shows</title>
|
||||
|
||||
<script>
|
||||
!function(){try{"light"===localStorage.getItem("theme")?(document.documentElement.classList.remove("dark"),document.documentElement.classList.add("light")):(document.documentElement.classList.add("dark"),document.documentElement.classList.remove("light"))}catch(e){console.error("Theme initialization failed:",e)}}();
|
||||
</script>
|
||||
|
||||
|
||||
<meta name="description" content="Download high quality movies and TV shows in UHD, 4K HDR, 1080p and more formats">
|
||||
|
||||
<!-- Font -->
|
||||
<link rel="dns-prefetch" href="https://fonts.gstatic.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous">
|
||||
|
||||
|
||||
<!-- Preload the logo -->
|
||||
<link rel="preload" href="/images/4KHDHUB-Dark-Logo.png" as="image" type="image/png" />
|
||||
<link rel="preload" href="/images/4KHDHUB-Bright-Logo.png" as="image" type="image/png" />
|
||||
|
||||
<!-- Theme script to prevent flash -->
|
||||
|
||||
|
||||
|
||||
<script data-cfasync="false" src="//dl4d3y1ajyv3q.cloudfront.net/?aydld=1221937"></script>
|
||||
|
||||
|
||||
<!-- Link to Google Fonts Stylesheets -->
|
||||
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
|
||||
<link href="https://fonts.cdnfonts.com/css/trebuchet-ms-2" rel="stylesheet">
|
||||
|
||||
<link rel="stylesheet" href="/css/styles.css?v=0.14.69c19">
|
||||
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<link rel="shortcut icon" href="/favicon.ico" />
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
||||
<meta name="apple-mobile-web-app-title" content="4K-HDHub" />
|
||||
<link rel="manifest" href="/site.webmanifest" />
|
||||
|
||||
<!-- JavaScript to apply font-display: swap -->
|
||||
<script type="text/javascript">
|
||||
!function(e,n,t){"use strict";var o="https://fonts.googleapis.com/css?family=Open+Sans",r="__3perf_googleFonts_5fd56";function c(e){(n.head||n.body).appendChild(e)}function a(){var e=n.createElement("link");e.href=o,e.rel="stylesheet",c(e)}function f(e){if(!n.getElementById(r)){var t=n.createElement("style");t.id=r,c(t)}n.getElementById(r).innerHTML=e}e.FontFace&&e.FontFace.prototype.hasOwnProperty("display")?(t[r]&&f(t[r]),fetch(o).then(function(e){return e.text()}).then(function(e){return e.replace(/@font-face {/g,"@font-face{font-display:swap;")}).then(function(e){return t[r]=e}).then(f).catch(a)):a()}(window,document,localStorage);
|
||||
</script>
|
||||
<!-- Google tag (gtag.js) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-LL0RL7VX47"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('js', new Date());
|
||||
|
||||
gtag('config', 'G-LL0RL7VX47');
|
||||
</script>
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div class="flex min-h-screen flex-col">
|
||||
<!-- Header -->
|
||||
<!-- Header with truly unified navigation -->
|
||||
<header class="sticky top-0 z-50 w-full">
|
||||
<div class="header">
|
||||
<div class="container flex h-14 items-center justify-between">
|
||||
<!-- Logo and mobile menu toggle -->
|
||||
<div class="flex items-center">
|
||||
<button id="menu-toggle" class="menu-toggle md:hidden">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="h-5 w-5">
|
||||
<line x1="3" y1="12" x2="21" y2="12"></line>
|
||||
<line x1="3" y1="6" x2="21" y2="6"></line>
|
||||
<line x1="3" y1="18" x2="21" y2="18"></line>
|
||||
</svg>
|
||||
<span class="sr-only">Toggle menu</span>
|
||||
</button>
|
||||
<a href="/" class="navbar-brand">
|
||||
<img id="logo" class="h-8 w-auto" src="/images/4KHDHUB-Bright-Logo.png" alt="4KHDHub logo">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<!-- SINGLE Navigation - Visible on desktop, hidden on mobile -->
|
||||
<nav id="main-nav" class="main-nav">
|
||||
<ul class="nav-list">
|
||||
<li class="nav-item"><a href="/" class="nav-link">Home</a></li>
|
||||
|
||||
<li class="nav-item dropdown">
|
||||
<a href="#" class="nav-link dropdown-toggle">
|
||||
Movies
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="dropdown-indicator h-4 w-4">
|
||||
<polyline points="6 9 12 15 18 9"></polyline>
|
||||
</svg>
|
||||
</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="/category/movies/" class="dropdown-item">Latest Movies</a></li>
|
||||
<li><a href="/category/hindi-movies/" class="dropdown-item">Hindi Movies</a></li>
|
||||
<li><a href="/category/english-movies/" class="dropdown-item">English Movies</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li class="nav-item dropdown">
|
||||
<a href="#" class="nav-link dropdown-toggle">
|
||||
Web Series
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="dropdown-indicator h-4 w-4">
|
||||
<polyline points="6 9 12 15 18 9"></polyline>
|
||||
</svg>
|
||||
</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="/category/series/" class="dropdown-item">Latest Episodes</a></li>
|
||||
<li><a href="/category/korean-series/" class="dropdown-item">Korean</a></li>
|
||||
<li><a href="/category/drama-series/" class="dropdown-item">Drama</a></li>
|
||||
<li><a href="/category/hindi-series/" class="dropdown-item">Hindi Series</a></li>
|
||||
<li><a href="/category/english-series/" class="dropdown-item">English Series</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li class="nav-item dropdown">
|
||||
<a href="#" class="nav-link dropdown-toggle">
|
||||
OTT
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="dropdown-indicator h-4 w-4">
|
||||
<polyline points="6 9 12 15 18 9"></polyline>
|
||||
</svg>
|
||||
</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="/category/netflix/" class="dropdown-item">Netflix</a></li>
|
||||
<li><a href="/category/amazon_prime_video/" class="dropdown-item">Amazon Prime Video</a></li>
|
||||
<li><a href="/category/jiohotstar/" class="dropdown-item">JioHotstar</a></li>
|
||||
<li><a href="/category/disney/" class="dropdown-item">Disney+</a></li>
|
||||
<li><a href="/category/Apple_TV/" class="dropdown-item">Apple TV+</a></li>
|
||||
<li><a href="/category/hbo_max/" class="dropdown-item">HBO Max</a></li>
|
||||
<li><a href="/category/hulu/" class="dropdown-item">Hulu</a></li>
|
||||
<li><a href="/category/crave/" class="dropdown-item">Crave</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
|
||||
<li class="nav-item"><a href="/category/anime/" class="nav-link">Anime</a></li>
|
||||
<li class="nav-item"><a href="/category/2160p-HDR/" class="nav-link">4K HDR</a></li>
|
||||
<li class="nav-item"><a href="/category/imdb/" class="nav-link">Top IMdb</a></li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<!-- Search and Theme Toggle -->
|
||||
<div class="flex items-center">
|
||||
<button id="search-toggle" class="search-toggle">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="h-5 w-5">
|
||||
<circle cx="11" cy="11" r="8"></circle>
|
||||
<line x1="21" y1="21" x2="16.65" y2="16.65"></line>
|
||||
</svg>
|
||||
<span class="sr-only">Search</span>
|
||||
</button>
|
||||
|
||||
<div class="search-container hidden md:flex">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="search-icon h-4 w-4">
|
||||
<circle cx="11" cy="11" r="8"></circle>
|
||||
<line x1="21" y1="21" x2="16.65" y2="16.65"></line>
|
||||
</svg>
|
||||
for
|
||||
<input type="search" id="search" placeholder="Search movies & series" class="search-input">
|
||||
</div>
|
||||
|
||||
<button id="theme-toggle" class="theme-toggle">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="theme-icon h-5 w-5">
|
||||
<circle cx="12" cy="12" r="5"></circle>
|
||||
<line x1="12" y1="1" x2="12" y2="3"></line>
|
||||
<line x1="12" y1="21" x2="12" y2="23"></line>
|
||||
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
|
||||
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
|
||||
<line x1="1" y1="12" x2="3" y2="12"></line>
|
||||
<line x1="21" y1="12" x2="23" y2="12"></line>
|
||||
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
|
||||
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
|
||||
</svg>
|
||||
<span class="sr-only">Toggle theme</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Mobile Menu Backdrop (only shown when menu is open) -->
|
||||
<div id="mobile-menu-backdrop" class="fixed inset-0 bg-black/70 hidden"></div>
|
||||
|
||||
<!-- Close button for mobile menu (only shown when menu is open) -->
|
||||
<button id="close-mobile-menu" class="fixed top-4 right-4 p-2 rounded-full z-[60] hidden">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="h-5 w-5">
|
||||
<line x1="18" y1="6" x2="6" y2="18"></line>
|
||||
<line x1="6" y1="6" x2="18" y2="18"></line>
|
||||
</svg>
|
||||
</button>
|
||||
|
||||
<!-- Search Overlay -->
|
||||
<div id="search-overlay" class="fixed inset-0 z-50 hidden">
|
||||
<div class="fixed" id="search-backdrop"></div>
|
||||
|
||||
|
||||
<button id="close-search" class="absolute right-4 top-4 p-2 rounded-full">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="h-5 w-5">
|
||||
<line x1="18" y1="6" x2="6" y2="18"></line>
|
||||
<line x1="6" y1="6" x2="18" y2="18"></line>
|
||||
</svg>
|
||||
<span class="sr-only">Close</span>
|
||||
</button>
|
||||
|
||||
<form action="/" method="get" class="search-form">
|
||||
<div class="search-input-container">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="search-icon-overlay">
|
||||
<circle cx="11" cy="11" r="8"></circle>
|
||||
<line x1="21" y1="21" x2="16.65" y2="16.65"></line>
|
||||
</svg>
|
||||
<input type="search" name="s" placeholder="Search Movies & TV-Shows" class="search-input-overlay" autofocus autocomplete="off">
|
||||
</div>
|
||||
<button type="submit" class="search-submit">
|
||||
Search
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<!-- Main Content -->
|
||||
<main class="flex-1">
|
||||
<div class="container">
|
||||
<section class="latest-releases">
|
||||
<div class="latest-releases-header">
|
||||
<h2 class="latest-releases-title">
|
||||
<span><svg style="vertical-align: bottom;" xmlns="http://www.w3.org/2000/svg" height="32px" viewBox="0 -960 960 960" width="32px" fill="#e3e3e3"><path d="M240-400q0 52 21 98.5t60 81.5q-1-5-1-9v-9q0-32 12-60t35-51l113-111 113 111q23 23 35 51t12 60v9q0 4-1 9 39-35 60-81.5t21-98.5q0-50-18.5-94.5T648-574q-20 13-42 19.5t-45 6.5q-62 0-107.5-41T401-690q-39 33-69 68.5t-50.5 72Q261-513 250.5-475T240-400Zm240 52-57 56q-11 11-17 25t-6 29q0 32 23.5 55t56.5 23q33 0 56.5-23t23.5-55q0-16-6-29.5T537-292l-57-56Zm0-492v132q0 34 23.5 57t57.5 23q18 0 33.5-7.5T622-658l18-22q74 42 117 117t43 163q0 134-93 227T480-80q-134 0-227-93t-93-227q0-129 86.5-245T480-840Z"/></svg></span> Search - The Tank </h2>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="card-grid">
|
||||
<!-- Movie Cards -->
|
||||
|
||||
|
||||
|
||||
<a href="/the-tiger-aka-the-tank-movie-5181/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/3ZfHKRRsXYxGfBZDpbcXlcFyu0Q.jpg" alt="The Tiger AKA The Tank" class="w-full h-full object-cover">
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
|
||||
<span class="movie-card-format">Drama</span>
|
||||
|
||||
<span class="movie-card-format">Action</span>
|
||||
|
||||
<span class="movie-card-format">War</span>
|
||||
|
||||
<span class="movie-card-format">Hindi</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">2160p</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
|
||||
<span class="movie-card-format">Movies</span>
|
||||
|
||||
<span class="movie-card-format">Amazon Prime Video</span>
|
||||
|
||||
<!--<span class="movie-card-format">HEVC</span>-->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">The Tiger AKA The Tank</h3>
|
||||
<p class="movie-card-meta">2025 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<a href="/the-strongest-tanks-labyrinth-raids-a-tank-with-a-rare-9999-resistance-skill-got-kicked-from-the-heros-party-series-1415/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/3Uf8L7wl4dokMukJ855cBLVxQj5.jpg" alt="The Strongest Tank's Labyrinth Raids A Tank with a Rare 9999 Resistance Skill Got Kicked from the Hero's Party" class="w-full h-full object-cover">
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
|
||||
<span class="movie-card-format">Animation</span>
|
||||
|
||||
<span class="movie-card-format">Action & Adventure</span>
|
||||
|
||||
<span class="movie-card-format">Sci-Fi & Fantasy</span>
|
||||
|
||||
<span class="movie-card-format">Hindi</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">Series</span>
|
||||
|
||||
<span class="movie-card-format">Anime</span>
|
||||
|
||||
<!--<span class="movie-card-format">HEVC</span>-->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">The Strongest Tank's Labyrinth Raids A Tank with a Rare 9999 Resistance Skill Got Kicked from the Hero's Party</h3>
|
||||
<p class="movie-card-meta">2024 • S01 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<!--<a href="movie-static-movie.html" class="movie-card">-->
|
||||
<!-- <div class="movie-card-image">-->
|
||||
<!-- <img src="images/placeholder.svg" alt="Dune: Part Two" class="w-full h-full object-cover">-->
|
||||
<!-- <div class="movie-card-overlay">-->
|
||||
<!-- <div class="movie-card-formats">-->
|
||||
<!-- <span class="movie-card-format">2160p</span>-->
|
||||
<!-- <span class="movie-card-format">4K HDR</span>-->
|
||||
<!-- <span class="movie-card-format">HEVC</span>-->
|
||||
<!-- </div>-->
|
||||
<!-- </div>-->
|
||||
<!-- </div>-->
|
||||
<!-- <div class="movie-card-content">-->
|
||||
<!-- <h3 class="movie-card-title">Dune: Part Two</h3>-->
|
||||
<!-- <p class="movie-card-meta">2024</p>-->
|
||||
<!-- </div>-->
|
||||
<!--</a>-->
|
||||
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Pagination -->
|
||||
<div class="pagination-container">
|
||||
<div class="pagination-container">
|
||||
<div class="pagination">
|
||||
|
||||
|
||||
<!-- Previous Page Link -->
|
||||
|
||||
<a class='pagination-item active'>1</a>
|
||||
|
||||
<!-- Next Page Link -->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<!-- Footer -->
|
||||
<footer class="border-t bg-background">
|
||||
<div class="container py-8 md:py-12">
|
||||
<div class="grid grid-cols-1 gap-8 md:grid-cols-4 justify-center text-center md:text-left">
|
||||
<div class="space-y-4">
|
||||
<h3 class="text-lg font-semibold">4KHDHub</h3>
|
||||
<p class="text-sm text-muted-foreground">
|
||||
Your one-stop destination for high-quality movies and TV shows in various formats.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- Quick Links Section -->
|
||||
<div class="space-y-4">
|
||||
<h3 class="text-lg font-semibold">Quick Links</h3>
|
||||
<ul class="flex flex-wrap justify-center gap-4 text-sm">
|
||||
<li>
|
||||
<a href="/about" class="text-muted-foreground hover:text-primary">
|
||||
About Us
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/contact" class="text-muted-foreground hover:text-primary">
|
||||
Contact Us
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/dmca" class="text-muted-foreground hover:text-primary">
|
||||
DMCA
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/privacy-policy" class="text-muted-foreground hover:text-primary">
|
||||
Privacy Policy
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="space-y-4">
|
||||
<h3 class="text-lg font-semibold">Connect</h3>
|
||||
<p class="text-sm text-muted-foreground">Stay updated with the latest releases and news.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Footer Bottom -->
|
||||
<div class="mt-8 border-t pt-8 text-center">
|
||||
<p class="text-xs text-muted-foreground">© <span id="current-year">2025</span> 4KHDHub - All rights reserved.</p>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!-- Back to top button -->
|
||||
<button id="back-to-top" class="fixed bottom-6 right-6 z-50 rounded-full shadow-md transition-opacity duration-300 opacity-0 pointer-events-none bg-primary text-primary-foreground p-2" aria-label="Back to top">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path d="m18 15-6-6-6 6" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<script src="/js/main.js?v=0.14.69c19"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1213,6 +1213,9 @@ code {
|
|||
<li><a href="/category/jiohotstar/" class="dropdown-item">JioHotstar</a></li>
|
||||
<li><a href="/category/disney/" class="dropdown-item">Disney+</a></li>
|
||||
<li><a href="/category/Apple_TV/" class="dropdown-item">Apple TV+</a></li>
|
||||
<li><a href="/category/hbo_max/" class="dropdown-item">HBO Max</a></li>
|
||||
<li><a href="/category/hulu/" class="dropdown-item">Hulu</a></li>
|
||||
<li><a href="/category/crave/" class="dropdown-item">Crave</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
|
|
@ -1312,7 +1315,7 @@ code {
|
|||
Home
|
||||
</a>
|
||||
<span class="breadcrumb-separator">/</span>
|
||||
<a href="/category/new-series-10811/" class="text-muted-foreground hover:text-foreground">
|
||||
<a href="/category/series/" class="text-muted-foreground hover:text-foreground">
|
||||
Web Series
|
||||
</a>
|
||||
</div>
|
||||
|
|
@ -1328,7 +1331,7 @@ code {
|
|||
<div class="content-main">
|
||||
<div class="mb-2">
|
||||
<h1 class="page-title">Stranger Things</h1>
|
||||
<p class="movie-tagline">One last adventure.</p>
|
||||
<p class="movie-tagline">It only gets stranger...</p>
|
||||
<div class="mt-2 flex flex-wrap items-center gap-2 text-muted-foreground">
|
||||
|
||||
<div class="imdb-badge badge">
|
||||
|
|
@ -1338,29 +1341,29 @@ code {
|
|||
<span>•</span>
|
||||
|
||||
|
||||
<span class="badge badge-outline">Drama</span>
|
||||
<span class="badge badge-outline"><a href="/category/drama/">Drama</a></span>
|
||||
|
||||
<span class="badge badge-outline">Mystery</span>
|
||||
<span class="badge badge-outline"><a href="/category/mystery/">Mystery</a></span>
|
||||
|
||||
<span class="badge badge-outline">Sci-Fi & Fantasy</span>
|
||||
<span class="badge badge-outline"><a href="/category/sci-fi & fantasy/">Sci-Fi & Fantasy</a></span>
|
||||
|
||||
<span class="badge badge-outline">Series</span>
|
||||
<span class="badge badge-outline"><a href="/category/series/">Series</a></span>
|
||||
|
||||
<span class="badge badge-outline">1080p</span>
|
||||
<span class="badge badge-outline"><a href="/category/1080p/">1080p</a></span>
|
||||
|
||||
<span class="badge badge-outline">2160p</span>
|
||||
<span class="badge badge-outline"><a href="/category/2160p/">2160p</a></span>
|
||||
|
||||
<span class="badge badge-outline">English</span>
|
||||
<span class="badge badge-outline"><a href="/category/english/">English</a></span>
|
||||
|
||||
<span class="badge badge-outline">Hindi</span>
|
||||
<span class="badge badge-outline"><a href="/category/hindi/">Hindi</a></span>
|
||||
|
||||
<span class="badge badge-outline">Horror</span>
|
||||
<span class="badge badge-outline"><a href="/category/horror/">Horror</a></span>
|
||||
|
||||
<span class="badge badge-outline">Netflix</span>
|
||||
<span class="badge badge-outline"><a href="/category/netflix/">Netflix</a></span>
|
||||
|
||||
<span class="badge badge-outline">Tamil</span>
|
||||
<span class="badge badge-outline"><a href="/category/tamil/">Tamil</a></span>
|
||||
|
||||
<span class="badge badge-outline">Telugu</span>
|
||||
<span class="badge badge-outline"><a href="/category/telugu/">Telugu</a></span>
|
||||
|
||||
|
||||
|
||||
|
|
@ -1386,7 +1389,7 @@ code {
|
|||
|
||||
<div class="metadata-item" style="display: flex;">
|
||||
<span class="metadata-label">Stars:</span>
|
||||
<span class="metadata-value">Millie Bobby Brown (El Hopper), Winona Ryder (Joyce Byers), David Harbour (Jim Hopper), Finn Wolfhard (Mike Wheeler), Gaten Matarazzo (Dustin Henderson)</span>
|
||||
<span class="metadata-value">Winona Ryder (Joyce Byers), David Harbour (Jim Hopper), Millie Bobby Brown (Eleven / Jane Hopper), Finn Wolfhard (Mike Wheeler), Gaten Matarazzo (Dustin Henderson)</span>
|
||||
</div>
|
||||
<div class="metadata-item" style="display: flex;">
|
||||
<span class="metadata-label">Last Air:</span>
|
||||
|
|
@ -11182,116 +11185,14 @@ code {
|
|||
<div class="card-grid-small">
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/taxi-driver-series-4566/" class="movie-card">
|
||||
<a href="/his-hers-series-5252/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/lghfb8beej1aH9ML8QyeSixniom.jpg" alt="Taxi Driver" class="w-full h-full object-cover">
|
||||
<img src="https://image.tmdb.org/t/p/w500/cDSXLVQLkCSBIpBx3UW04TsfZ5c.jpg" alt="HIS & HERS" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Drama</span>
|
||||
|
||||
<span class="movie-card-format">Crime</span>
|
||||
|
||||
<span class="movie-card-format">Action & Adventure</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">Netflix</span>
|
||||
|
||||
<span class="movie-card-format">Series</span>
|
||||
|
||||
<span class="movie-card-format">Korean</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Taxi Driver</h3>
|
||||
<p class="movie-card-meta">2021 • S1.0-S3.0 EP12 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/percy-jackson-and-the-olympians-series-4844/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/40eFcTzZier3DWLqldsP5VHxeoD.jpg" alt="Percy Jackson and the Olympians" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Drama</span>
|
||||
|
||||
<span class="movie-card-format">Family</span>
|
||||
|
||||
<span class="movie-card-format">Action & Adventure</span>
|
||||
|
||||
<span class="movie-card-format">Sci-Fi & Fantasy</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">2160p</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
|
||||
<span class="movie-card-format">DSNP</span>
|
||||
|
||||
<span class="movie-card-format">Series</span>
|
||||
|
||||
<span class="movie-card-format">Disney+</span>
|
||||
|
||||
<span class="movie-card-format">JioHotstar</span>
|
||||
|
||||
<span class="movie-card-format">Hulu</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Percy Jackson and the Olympians</h3>
|
||||
<p class="movie-card-meta">2023 • S1.0-S2.0 EP05 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/tokyo-ghoul-series-2239/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/1m4RlC9BTCbyY549TOdVQ5NRPcR.jpg" alt="Tokyo Ghoul" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Animation</span>
|
||||
|
||||
<span class="movie-card-format">Drama</span>
|
||||
|
||||
<span class="movie-card-format">Action</span>
|
||||
|
||||
<span class="movie-card-format">Sci-Fi & Fantasy</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">Series</span>
|
||||
|
||||
<span class="movie-card-format">Anime</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Tokyo Ghoul</h3>
|
||||
<p class="movie-card-meta">2014 • S1.0-S5.0 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/made-in-korea-series-5037/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/q9ZRQN98L2OvYP00mIlv4oPPfOU.jpg" alt="Made in Korea" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Drama</span>
|
||||
|
||||
<span class="movie-card-format">Action</span>
|
||||
|
||||
<span class="movie-card-format">Thriller</span>
|
||||
|
||||
<span class="movie-card-format">Crime</span>
|
||||
|
|
@ -11300,20 +11201,140 @@ code {
|
|||
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">2160p</span>
|
||||
<span class="movie-card-format">Netflix</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
<span class="movie-card-format">Tamil</span>
|
||||
|
||||
<span class="movie-card-format">Series</span>
|
||||
|
||||
<span class="movie-card-format">Korean</span>
|
||||
<span class="movie-card-format">Telugu</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Made in Korea</h3>
|
||||
<p class="movie-card-meta">2025 • S1.0 EP04 </p>
|
||||
<h3 class="movie-card-title">HIS & HERS</h3>
|
||||
<p class="movie-card-meta">2026 • S1.0 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/jujutsu-kaisen-series-224/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/fHpKWq9ayzSk8nSwqRuaAUemRKh.jpg" alt="JUJUTSU KAISEN" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Animation</span>
|
||||
|
||||
<span class="movie-card-format">Action</span>
|
||||
|
||||
<span class="movie-card-format">Action & Adventure</span>
|
||||
|
||||
<span class="movie-card-format">Sci-Fi & Fantasy</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
|
||||
<span class="movie-card-format">HEVC</span>
|
||||
|
||||
<span class="movie-card-format">WEB-DL</span>
|
||||
|
||||
<span class="movie-card-format">BluRay</span>
|
||||
|
||||
<span class="movie-card-format">Series</span>
|
||||
|
||||
<span class="movie-card-format">Anime</span>
|
||||
|
||||
<span class="movie-card-format">Multi Audios</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">JUJUTSU KAISEN</h3>
|
||||
<p class="movie-card-meta">2020 • S1.0-S3.0 EP49 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/hells-paradise-jigokuraku-series-2092/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/1V9I7SvZbYoMbSvdtnlkkq9SB1k.jpg" alt="Hell's Paradise: Jigokuraku" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Animation</span>
|
||||
|
||||
<span class="movie-card-format">Drama</span>
|
||||
|
||||
<span class="movie-card-format">Thriller</span>
|
||||
|
||||
<span class="movie-card-format">Action & Adventure</span>
|
||||
|
||||
<span class="movie-card-format">Sci-Fi & Fantasy</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">Dual Language</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
|
||||
<span class="movie-card-format">BluRay</span>
|
||||
|
||||
<span class="movie-card-format">REMUX</span>
|
||||
|
||||
<span class="movie-card-format">Series</span>
|
||||
|
||||
<span class="movie-card-format">Anime</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Hell's Paradise: Jigokuraku</h3>
|
||||
<p class="movie-card-meta">2023 • S1.0 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/rascal-does-not-dream-of-bunny-girl-senpai-series-1759/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w400/fbqDG7GjodvaNecgv1q8kfSNPl5.jpg" alt="Rascal Does Not Dream of Bunny Girl Senpai" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Fantasy</span>
|
||||
|
||||
<span class="movie-card-format">Animation</span>
|
||||
|
||||
<span class="movie-card-format">Drama</span>
|
||||
|
||||
<span class="movie-card-format">Comedy</span>
|
||||
|
||||
<span class="movie-card-format">Mystery</span>
|
||||
|
||||
<span class="movie-card-format">Romance</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">Dual Language</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
|
||||
<span class="movie-card-format">BluRay</span>
|
||||
|
||||
<span class="movie-card-format">REMUX</span>
|
||||
|
||||
<span class="movie-card-format">Series</span>
|
||||
|
||||
<span class="movie-card-format">Anime</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Rascal Does Not Dream of Bunny Girl Senpai</h3>
|
||||
<p class="movie-card-meta">2018 • S1.0-S5.0 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
|
|
|
|||
|
|
@ -1080,6 +1080,9 @@ p, .metadata-value, .episode-description, .movie-tagline {
|
|||
<li><a href="/category/jiohotstar/" class="dropdown-item">JioHotstar</a></li>
|
||||
<li><a href="/category/disney/" class="dropdown-item">Disney+</a></li>
|
||||
<li><a href="/category/Apple_TV/" class="dropdown-item">Apple TV+</a></li>
|
||||
<li><a href="/category/hbo_max/" class="dropdown-item">HBO Max</a></li>
|
||||
<li><a href="/category/hulu/" class="dropdown-item">Hulu</a></li>
|
||||
<li><a href="/category/crave/" class="dropdown-item">Crave</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
|
|
@ -1179,7 +1182,7 @@ p, .metadata-value, .episode-description, .movie-tagline {
|
|||
Home
|
||||
</a>
|
||||
<span class="breadcrumb-separator">/</span>
|
||||
<a href="/category/new-movies-10810/" class="text-muted-foreground hover:text-foreground">
|
||||
<a href="/category/movies/" class="text-muted-foreground hover:text-foreground">
|
||||
Movies
|
||||
</a>
|
||||
</div>
|
||||
|
|
@ -1209,23 +1212,23 @@ p, .metadata-value, .episode-description, .movie-tagline {
|
|||
</div>
|
||||
<span>•</span>
|
||||
|
||||
<span class="badge badge-outline">1080p</span>
|
||||
<span class="badge badge-outline"><a href="/category/1080p/">1080p</a></span>
|
||||
|
||||
<span class="badge badge-outline">2160p</span>
|
||||
<span class="badge badge-outline"><a href="/category/2160p/">2160p</a></span>
|
||||
|
||||
<span class="badge badge-outline">Action</span>
|
||||
<span class="badge badge-outline"><a href="/category/action/">Action</a></span>
|
||||
|
||||
<span class="badge badge-outline">Adventure</span>
|
||||
<span class="badge badge-outline"><a href="/category/adventure/">Adventure</a></span>
|
||||
|
||||
<span class="badge badge-outline">HDR</span>
|
||||
<span class="badge badge-outline"><a href="/category/hdr/">HDR</a></span>
|
||||
|
||||
<span class="badge badge-outline">English</span>
|
||||
<span class="badge badge-outline"><a href="/category/english/">English</a></span>
|
||||
|
||||
<span class="badge badge-outline">Science Fiction</span>
|
||||
<span class="badge badge-outline"><a href="/category/science fiction/">Science Fiction</a></span>
|
||||
|
||||
<span class="badge badge-outline">WEB-DL</span>
|
||||
<span class="badge badge-outline"><a href="/category/web-dl/">WEB-DL</a></span>
|
||||
|
||||
<span class="badge badge-outline">Movies</span>
|
||||
<span class="badge badge-outline"><a href="/category/movies/">Movies</a></span>
|
||||
|
||||
<!--<span class="badge badge-outline">Dual Audio</span>-->
|
||||
</div>
|
||||
|
|
@ -1949,119 +1952,13 @@ p, .metadata-value, .episode-description, .movie-tagline {
|
|||
<div class="card-grid-small">
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/demon-slayer-kimetsu-no-yaiba-infinity-castle-movie-5110/" class="movie-card">
|
||||
<a href="/jujutsu-kaisen-series-224/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/fWVSwgjpT2D78VUh6X8UBd2rorW.jpg" alt="Demon Slayer: Kimetsu no Yaiba Infinity Castle" class="w-full h-full object-cover">
|
||||
<img src="https://image.tmdb.org/t/p/w500/fHpKWq9ayzSk8nSwqRuaAUemRKh.jpg" alt="JUJUTSU KAISEN" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Fantasy</span>
|
||||
|
||||
<span class="movie-card-format">Animation</span>
|
||||
|
||||
<span class="movie-card-format">Action</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
|
||||
<span class="movie-card-format">WEB-DL</span>
|
||||
|
||||
<span class="movie-card-format">Movies</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Demon Slayer: Kimetsu no Yaiba Infinity Castle</h3>
|
||||
<p class="movie-card-meta">2025 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/justice-league-movie-5109/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/eifGNCSDuxJeS1loAXil5bIGgvC.jpg" alt="Justice League" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Adventure</span>
|
||||
|
||||
<span class="movie-card-format">Action</span>
|
||||
|
||||
<span class="movie-card-format">Science Fiction</span>
|
||||
|
||||
<span class="movie-card-format">2160p</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
|
||||
<span class="movie-card-format">WEB-DL</span>
|
||||
|
||||
<span class="movie-card-format">BluRay</span>
|
||||
|
||||
<span class="movie-card-format">REMUX</span>
|
||||
|
||||
<span class="movie-card-format">Movies</span>
|
||||
|
||||
<span class="movie-card-format">10Bit</span>
|
||||
|
||||
<span class="movie-card-format">DV HDR</span>
|
||||
|
||||
<span class="movie-card-format">SDR</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Justice League</h3>
|
||||
<p class="movie-card-meta">2017 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/the-hobbit-the-battle-of-the-five-armies-movie-946/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/xT98tLqatZPQApyRmlPL12LtiWp.jpg" alt="The Hobbit: The Battle of the Five Armies" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Adventure</span>
|
||||
|
||||
<span class="movie-card-format">Fantasy</span>
|
||||
|
||||
<span class="movie-card-format">Action</span>
|
||||
|
||||
<span class="movie-card-format">2160p</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
|
||||
<span class="movie-card-format">WEB-DL</span>
|
||||
|
||||
<span class="movie-card-format">BluRay</span>
|
||||
|
||||
<span class="movie-card-format">Movies</span>
|
||||
|
||||
<span class="movie-card-format">10Bit</span>
|
||||
|
||||
<span class="movie-card-format">DV HDR</span>
|
||||
|
||||
<span class="movie-card-format">SDR</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">The Hobbit: The Battle of the Five Armies</h3>
|
||||
<p class="movie-card-meta">2014 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/cashero-series-5072/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/dm6RoaKgkGUxckamMDzsbqtLhFv.jpg" alt="Cashero" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Drama</span>
|
||||
<span class="movie-card-format">Animation</span>
|
||||
|
||||
<span class="movie-card-format">Action</span>
|
||||
|
||||
|
|
@ -2069,24 +1966,146 @@ p, .metadata-value, .episode-description, .movie-tagline {
|
|||
|
||||
<span class="movie-card-format">Sci-Fi & Fantasy</span>
|
||||
|
||||
<span class="movie-card-format">Hindi</span>
|
||||
<span class="movie-card-format">1080p</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
<span class="movie-card-format">HEVC</span>
|
||||
|
||||
<span class="movie-card-format">Tamil</span>
|
||||
<span class="movie-card-format">WEB-DL</span>
|
||||
|
||||
<span class="movie-card-format">BluRay</span>
|
||||
|
||||
<span class="movie-card-format">Series</span>
|
||||
|
||||
<span class="movie-card-format">Telugu</span>
|
||||
<span class="movie-card-format">Anime</span>
|
||||
|
||||
<span class="movie-card-format">Korean</span>
|
||||
<span class="movie-card-format">Multi Audios</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Cashero</h3>
|
||||
<p class="movie-card-meta">2025 • S1.0 </p>
|
||||
<h3 class="movie-card-title">JUJUTSU KAISEN</h3>
|
||||
<p class="movie-card-meta">2020 • S1.0-S3.0 EP49 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/tehran-series-2790/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/pXV1fcIQIbpTNYRJ47rfUvG6hq4.jpg" alt="Tehran" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Drama</span>
|
||||
|
||||
<span class="movie-card-format">Action</span>
|
||||
|
||||
<span class="movie-card-format">Thriller</span>
|
||||
|
||||
<span class="movie-card-format">Crime</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">2160p</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
|
||||
<span class="movie-card-format">HDR</span>
|
||||
|
||||
<span class="movie-card-format">DoVi</span>
|
||||
|
||||
<span class="movie-card-format">Series</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">Tehran</h3>
|
||||
<p class="movie-card-meta">2020 • S1.0-S3.0 EP01 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/tron-ares-movie-4691/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/chpWmskl3aKm1aTZqUHRCtviwPy.jpg" alt="TRON: Ares" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">1080p</span>
|
||||
|
||||
<span class="movie-card-format">2160p</span>
|
||||
|
||||
<span class="movie-card-format">Action</span>
|
||||
|
||||
<span class="movie-card-format">Adventure</span>
|
||||
|
||||
<span class="movie-card-format">BluRay</span>
|
||||
|
||||
<span class="movie-card-format">Disney+</span>
|
||||
|
||||
<span class="movie-card-format">DSNP</span>
|
||||
|
||||
<span class="movie-card-format">DV HDR</span>
|
||||
|
||||
<span class="movie-card-format">English</span>
|
||||
|
||||
<span class="movie-card-format">HEVC</span>
|
||||
|
||||
<span class="movie-card-format">Hindi</span>
|
||||
|
||||
<span class="movie-card-format">IMAX</span>
|
||||
|
||||
<span class="movie-card-format">Movies</span>
|
||||
|
||||
<span class="movie-card-format">Multi Audios</span>
|
||||
|
||||
<span class="movie-card-format">Science Fiction</span>
|
||||
|
||||
<span class="movie-card-format">SDR</span>
|
||||
|
||||
<span class="movie-card-format">Tamil</span>
|
||||
|
||||
<span class="movie-card-format">Telugu</span>
|
||||
|
||||
<span class="movie-card-format">WEB-DL</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">TRON: Ares</h3>
|
||||
<p class="movie-card-meta">2025 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Related Series 1 -->
|
||||
<a href="/the-blue-trail-movie-5265/" class="movie-card">
|
||||
<div class="movie-card-image">
|
||||
<img src="https://image.tmdb.org/t/p/w500/ua8XnJ450rhBTxkY2wpD2ITw7BJ.jpg" alt="The Blue Trail" class="w-full h-full object-cover">
|
||||
|
||||
<div class="movie-card-overlay">
|
||||
<div class="movie-card-formats">
|
||||
<span class="movie-card-format">Drama</span>
|
||||
|
||||
<span class="movie-card-format">Comedy</span>
|
||||
|
||||
<span class="movie-card-format">Science Fiction</span>
|
||||
|
||||
<span class="movie-card-format">1080p</span>
|
||||
|
||||
<span class="movie-card-format">WEB-DL</span>
|
||||
|
||||
<span class="movie-card-format">Movies</span>
|
||||
|
||||
<span class="movie-card-format">VOD</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="movie-card-content">
|
||||
<h3 class="movie-card-title">The Blue Trail</h3>
|
||||
<p class="movie-card-meta">2025 </p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
|
|
|
|||
2038
src/source/__fixtures__/FourKHDHub/https:4khdhub.dadthe-tiger-aka-the-tank-movie-5181
generated
Normal file
2038
src/source/__fixtures__/FourKHDHub/https:4khdhub.dadthe-tiger-aka-the-tank-movie-5181
generated
Normal file
File diff suppressed because it is too large
Load diff
1
src/source/__fixtures__/FourKHDHub/https:api.themoviedb.org3movie1252037
generated
Normal file
1
src/source/__fixtures__/FourKHDHub/https:api.themoviedb.org3movie1252037
generated
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"adult":false,"backdrop_path":"/vMxOmgmBGegjVObjlb8ugsjGgkD.jpg","belongs_to_collection":null,"budget":0,"genres":[{"id":10752,"name":"War"},{"id":28,"name":"Action"},{"id":18,"name":"Drama"}],"homepage":"https://www.amazon.com/dp/B0G4XCZW3X","id":1252037,"imdb_id":"tt31495504","origin_country":["DE"],"original_language":"de","original_title":"Der Tiger","overview":"A German Tiger tank crew is sent on a dangerous mission to rescue the missing officer Paul von Hardenburg from a top-secret bunker behind enemy lines. As they make their way through the lethal no-man's land, they must confront not only the enemy, but also their own fears and inner demons. Fueled by the Wehrmacht's methamphetamine, their mission increasingly becomes a journey into the heart of darkness.","popularity":420.0496,"poster_path":"/65Jr1JAgWlu9em8zHhAfrNJJQBt.jpg","production_companies":[{"id":78486,"logo_path":"/oKG2ahqSVN8i5Rd0U9ZNbNY6jK7.png","name":"Pantaleon Films","origin_country":"DE"}],"production_countries":[{"iso_3166_1":"DE","name":"Germany"}],"release_date":"2025-09-18","revenue":0,"runtime":117,"spoken_languages":[{"english_name":"German","iso_639_1":"de","name":"Deutsch"}],"status":"Released","tagline":"","title":"The Tank","video":false,"vote_average":7.133,"vote_count":154}
|
||||
1
src/source/__fixtures__/FourKHDHub/https:api.themoviedb.org3movie911430
generated
Normal file
1
src/source/__fixtures__/FourKHDHub/https:api.themoviedb.org3movie911430
generated
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"adult":false,"backdrop_path":"/ZtcGMc204JsNqfjS9lU6udRgpo.jpg","belongs_to_collection":null,"budget":250000000,"genres":[{"id":28,"name":"Action"},{"id":18,"name":"Drama"}],"homepage":"https://www.f1themovie.com","id":911430,"imdb_id":"tt16311594","origin_country":["US"],"original_language":"en","original_title":"F1","overview":"Racing legend Sonny Hayes is coaxed out of retirement to lead a struggling Formula 1 team—and mentor a young hotshot driver—while chasing one more chance at glory.","popularity":43.543,"poster_path":"/vqBmyAj0Xm9LnS1xe1MSlMAJyHq.jpg","production_companies":[{"id":81,"logo_path":"/8wOfUhA7vwU2gbPjQy7Vv3EiF0o.png","name":"Plan B Entertainment","origin_country":"US"},{"id":130,"logo_path":"/c9dVHPOL3cqCr2593Ahk0nEKTEM.png","name":"Jerry Bruckheimer Films","origin_country":"US"},{"id":199632,"logo_path":null,"name":"Dawn Apollo Films","origin_country":"US"},{"id":194232,"logo_path":"/oE7H93u8sy5vvW5EH3fpCp68vvB.png","name":"Apple Studios","origin_country":"US"},{"id":19647,"logo_path":null,"name":"Monolith Pictures","origin_country":"US"}],"production_countries":[{"iso_3166_1":"US","name":"United States of America"}],"release_date":"2025-06-25","revenue":631627111,"runtime":156,"spoken_languages":[{"english_name":"Danish","iso_639_1":"da","name":"Dansk"},{"english_name":"English","iso_639_1":"en","name":"English"},{"english_name":"German","iso_639_1":"de","name":"Deutsch"},{"english_name":"Spanish","iso_639_1":"es","name":"Español"}],"status":"Released","tagline":"Let's ride.","title":"F1","video":false,"vote_average":7.8,"vote_count":3036}
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Redirecting ...</title>
|
||||
<meta name="referrer" content="no-referrer">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<meta name="author" content="s-b0t">
|
||||
<meta name="googlebot" content="noindex,nofollow">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
|
||||
<style>#container{width:100%;aspect-ratio:100 / 29}@media only screen and (min-width: 992px){img{height:80%!important;width:50%!important}}@media only screen and (min-width: 1200px){img{height:80%!important;width:50%!important}}.relative{position:relative}.bottom-left{position:absolute}.PurpleTxt{color:#7e41ff!important;font-weight:600;margin-left:.5ch;margin-right:.5ch}</style>
|
||||
</head>
|
||||
<body>
|
||||
Redirecting ..
|
||||
<script type="text/javascript">
|
||||
function stck(e,t,i){let n="";if(i){let o=new Date;o.setTime(o.getTime()+6e4*i),n="; expires="+o.toUTCString()}document.cookie=`${e}=${t}; path=/; SameSite=None; Secure${n}`}
|
||||
function s(e,t,i){let n=new Date,m={value:t,expiry:n.getTime()+i};window.localStorage.setItem(e,JSON.stringify(m));stck('xla',"s4t",4);}s('o','Y214WE0xWjNZbXRhVUdwMmIxQldObFo2ZFRCeFZVOXRRbmxxYVV0UU9XRk1Ta1ZoVFV0RmJYRXlTWFpaWVhVMWNubHFhVzVVT1dkTlNtdDFiM3BGZVhCNWFtbFdkbXAyYjJ4V05sWjZVMVpJZDA5M1JsSXdNa2RWZURWdk1rVkxSbnBqZGtWdGVHdEtlRm94YjBwV2JFSlZUVzVHVW1OcVRWUXhTWEY2UVV4d1ZXTkRSbFJyTmtjd1JXSnllbEp0U1dGamVVcFNOR3BXWVRBOQ==',180*1000);setTimeout(()=>window.location.href='https://gadgetsweb.xyz/homelander/', 2000);
|
||||
</script>
|
||||
|
||||
|
||||
</body></html>
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Redirecting ...</title>
|
||||
<meta name="referrer" content="no-referrer">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<meta name="author" content="s-b0t">
|
||||
<meta name="googlebot" content="noindex,nofollow">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
|
||||
<style>#container{width:100%;aspect-ratio:100 / 29}@media only screen and (min-width: 992px){img{height:80%!important;width:50%!important}}@media only screen and (min-width: 1200px){img{height:80%!important;width:50%!important}}.relative{position:relative}.bottom-left{position:absolute}.PurpleTxt{color:#7e41ff!important;font-weight:600;margin-left:.5ch;margin-right:.5ch}</style>
|
||||
</head>
|
||||
<body>
|
||||
Redirecting ..
|
||||
<script type="text/javascript">
|
||||
function stck(e,t,i){let n="";if(i){let o=new Date;o.setTime(o.getTime()+6e4*i),n="; expires="+o.toUTCString()}document.cookie=`${e}=${t}; path=/; SameSite=None; Secure${n}`}
|
||||
function s(e,t,i){let n=new Date,m={value:t,expiry:n.getTime()+i};window.localStorage.setItem(e,JSON.stringify(m));stck('xla',"s4t",4);}s('o','Y214WE0xWjNZbXRhVUdwMmIxQldObFo2ZFRCeFZVOXRRbmxxYVV0UU9XRk1Ta1ZoVFV0RmJYRXlTWFpaWVhVMWNubHFhVzVVT1dkTlNtdDFiM3BGZVhCNWFtbFdkbXAyYjJ4V05sWjZVMVpJZDA5M1JsSXdNa2RWZURWdk1rVkxSbnBqZGtWdGVHdEtlRm94YjBwV2JFSlZUVzVHVW1OcVRWUXhTWEY1ZVV4dmJWZDRSbE5YWWt4NlkySnllbHBzU0hkVGQxcDNSVFJXWVRBOQ==',180*1000);setTimeout(()=>window.location.href='https://gadgetsweb.xyz/homelander/', 2000);
|
||||
</script>
|
||||
|
||||
|
||||
</body></html>
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Redirecting ...</title>
|
||||
<meta name="referrer" content="no-referrer">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<meta name="author" content="s-b0t">
|
||||
<meta name="googlebot" content="noindex,nofollow">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
|
||||
<style>#container{width:100%;aspect-ratio:100 / 29}@media only screen and (min-width: 992px){img{height:80%!important;width:50%!important}}@media only screen and (min-width: 1200px){img{height:80%!important;width:50%!important}}.relative{position:relative}.bottom-left{position:absolute}.PurpleTxt{color:#7e41ff!important;font-weight:600;margin-left:.5ch;margin-right:.5ch}</style>
|
||||
</head>
|
||||
<body>
|
||||
Redirecting ..
|
||||
<script type="text/javascript">
|
||||
function stck(e,t,i){let n="";if(i){let o=new Date;o.setTime(o.getTime()+6e4*i),n="; expires="+o.toUTCString()}document.cookie=`${e}=${t}; path=/; SameSite=None; Secure${n}`}
|
||||
function s(e,t,i){let n=new Date,m={value:t,expiry:n.getTime()+i};window.localStorage.setItem(e,JSON.stringify(m));stck('xla',"s4t",4);}s('o','Y214WE0xWjNZbXRhVUdwMmIxQldObFo2ZFRCeFZVOXRRbmxxYVV0UU9XRk1Ta1ZoVFV0RmJYRXlTWFpaWVhVMWNubHFhVzVVT1dkTlNtdDFiM3BGZVhCNWFtbFdkbXAyYjJ4V05sWjZVMVpJZDA5M1JsSXdNa2RWZURWdk1rVkxSbnBqZGtWdGVHdEtlRm94YjBwV2JFSlZUVzVHVW1OcVRWUXhTWEY0Tkd4R1lVVkNiMkZPTUVkS1kyNXllV05rUldGTmJtOUthelpXWVRBOQ==',180*1000);setTimeout(()=>window.location.href='https://gadgetsweb.xyz/homelander/', 2000);
|
||||
</script>
|
||||
|
||||
|
||||
</body></html>
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Redirecting ...</title>
|
||||
<meta name="referrer" content="no-referrer">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<meta name="author" content="s-b0t">
|
||||
<meta name="googlebot" content="noindex,nofollow">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
|
||||
<style>#container{width:100%;aspect-ratio:100 / 29}@media only screen and (min-width: 992px){img{height:80%!important;width:50%!important}}@media only screen and (min-width: 1200px){img{height:80%!important;width:50%!important}}.relative{position:relative}.bottom-left{position:absolute}.PurpleTxt{color:#7e41ff!important;font-weight:600;margin-left:.5ch;margin-right:.5ch}</style>
|
||||
</head>
|
||||
<body>
|
||||
Redirecting ..
|
||||
<script type="text/javascript">
|
||||
function stck(e,t,i){let n="";if(i){let o=new Date;o.setTime(o.getTime()+6e4*i),n="; expires="+o.toUTCString()}document.cookie=`${e}=${t}; path=/; SameSite=None; Secure${n}`}
|
||||
function s(e,t,i){let n=new Date,m={value:t,expiry:n.getTime()+i};window.localStorage.setItem(e,JSON.stringify(m));stck('xla',"s4t",4);}s('o','Y214WE0xWjNZbXRhVUdwMmIxQldObFo2ZFRCeFZVOXRRbmxxYVV0UU9XRk1Ta1ZoVFV0RmJYRXlTWFpaWVhVMWNubHFhVzVVT1dkTlNtdDFiM3BGZVhCNWFtbFdkbXAyYjJ4V05sWjZVMVpJZDA5M1JsSXdNa2RWZURWdk1rVkxSbnBqZGtWdGVHdEtlRm94YjBwV2JFSlZUVzVHVW1OcVRWUXhTWEY0TVV0SmVtdDVTVEpyWlVwSFFXWnlTbHBzYjFWUGRtNTRTRzFXWVRBOQ==',180*1000);setTimeout(()=>window.location.href='https://gadgetsweb.xyz/homelander/', 2000);
|
||||
</script>
|
||||
|
||||
|
||||
</body></html>
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Redirecting ...</title>
|
||||
<meta name="referrer" content="no-referrer">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<meta name="author" content="s-b0t">
|
||||
<meta name="googlebot" content="noindex,nofollow">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
|
||||
<style>#container{width:100%;aspect-ratio:100 / 29}@media only screen and (min-width: 992px){img{height:80%!important;width:50%!important}}@media only screen and (min-width: 1200px){img{height:80%!important;width:50%!important}}.relative{position:relative}.bottom-left{position:absolute}.PurpleTxt{color:#7e41ff!important;font-weight:600;margin-left:.5ch;margin-right:.5ch}</style>
|
||||
</head>
|
||||
<body>
|
||||
Redirecting ..
|
||||
<script type="text/javascript">
|
||||
function stck(e,t,i){let n="";if(i){let o=new Date;o.setTime(o.getTime()+6e4*i),n="; expires="+o.toUTCString()}document.cookie=`${e}=${t}; path=/; SameSite=None; Secure${n}`}
|
||||
function s(e,t,i){let n=new Date,m={value:t,expiry:n.getTime()+i};window.localStorage.setItem(e,JSON.stringify(m));stck('xla',"s4t",4);}s('o','Y214WE0xWjNZbXRhVUdwMmIxQldObFo2ZFRCeFZVOXRRbmxxYVV0UU9XRk1Ta1ZoVFV0RmJYRXlTWFpaWVhVMWNubHFhVzVVT1dkTlNtdDFiM3BGZVhCNWFtbFdkbXAyYjJ4V05sWjZVMVpJZDA5M1JsSXdNa2RWZURWdk1rVkxSbnBqZGtWdGVHdEtlRm94YjBwV2JFSlZUVzVHVW1OcVRWUXhTWEY2V214R1lWTkJTVk5OWTBjd2NXcHZlWGxNYmxSNWRtOUhTVFJXWVRBOQ==',180*1000);setTimeout(()=>window.location.href='https://gadgetsweb.xyz/homelander/', 2000);
|
||||
</script>
|
||||
|
||||
|
||||
</body></html>
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Redirecting ...</title>
|
||||
<meta name="referrer" content="no-referrer">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<meta name="author" content="s-b0t">
|
||||
<meta name="googlebot" content="noindex,nofollow">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
|
||||
<style>#container{width:100%;aspect-ratio:100 / 29}@media only screen and (min-width: 992px){img{height:80%!important;width:50%!important}}@media only screen and (min-width: 1200px){img{height:80%!important;width:50%!important}}.relative{position:relative}.bottom-left{position:absolute}.PurpleTxt{color:#7e41ff!important;font-weight:600;margin-left:.5ch;margin-right:.5ch}</style>
|
||||
</head>
|
||||
<body>
|
||||
Redirecting ..
|
||||
<script type="text/javascript">
|
||||
function stck(e,t,i){let n="";if(i){let o=new Date;o.setTime(o.getTime()+6e4*i),n="; expires="+o.toUTCString()}document.cookie=`${e}=${t}; path=/; SameSite=None; Secure${n}`}
|
||||
function s(e,t,i){let n=new Date,m={value:t,expiry:n.getTime()+i};window.localStorage.setItem(e,JSON.stringify(m));stck('xla',"s4t",4);}s('o','Y214WE0xWjNZbXRhVUdwMmIxQldObFo2ZFRCeFZVOXRRbmxxYVV0UU9XRk1Ta1ZoVFV0RmJYRXlTWFpaWVhVMWNubHFhVzVVT1dkTlNtdDFiM3BGZVhCNWFtbFdkbXAyYjJ4V05sWjZVMVpJZDA5M1JsSXdNa2RWZURWdk1rVkxSbnBqZGtWdGVHdEtlRm94YjBwV2JFSlZUVzVHVW1OcVRWUXhTWEY2Vm0xSFlWTkJTbFIxYVUxSlJWUndNa0ZXUjJGTmQwVlRUVEZXWVRBOQ==',180*1000);setTimeout(()=>window.location.href='https://gadgetsweb.xyz/homelander/', 2000);
|
||||
</script>
|
||||
|
||||
|
||||
</body></html>
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Redirecting ...</title>
|
||||
<meta name="referrer" content="no-referrer">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<meta name="author" content="s-b0t">
|
||||
<meta name="googlebot" content="noindex,nofollow">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
|
||||
<style>#container{width:100%;aspect-ratio:100 / 29}@media only screen and (min-width: 992px){img{height:80%!important;width:50%!important}}@media only screen and (min-width: 1200px){img{height:80%!important;width:50%!important}}.relative{position:relative}.bottom-left{position:absolute}.PurpleTxt{color:#7e41ff!important;font-weight:600;margin-left:.5ch;margin-right:.5ch}</style>
|
||||
</head>
|
||||
<body>
|
||||
Redirecting ..
|
||||
<script type="text/javascript">
|
||||
function stck(e,t,i){let n="";if(i){let o=new Date;o.setTime(o.getTime()+6e4*i),n="; expires="+o.toUTCString()}document.cookie=`${e}=${t}; path=/; SameSite=None; Secure${n}`}
|
||||
function s(e,t,i){let n=new Date,m={value:t,expiry:n.getTime()+i};window.localStorage.setItem(e,JSON.stringify(m));stck('xla',"s4t",4);}s('o','Y214WE0xWjNZbXRhVUdwMmIxQldObFo2ZFRCeFZVOXRRbmxxYVV0UU9XRk1Ta1ZoVFV0RmJYRXlTWFpaWVhVMWNubHFhVzVVT1dkTlNtdDFiM3BGZVhCNWFtbFdkbXAyYjJ4V05sWjZVMVpJZDA5M1JsSXdNa2RWZURWdk1rVkxSbnBqZGtWdGVHdEtlRm94YjBwV2JFSlZUVzVHVW1OcVRWUXhTWEY0TlV0Q1NtTjNSbEpYYUVkSlJXSnlWRUZXU1dGSlFrbHRTV05XWVRBOQ==',180*1000);setTimeout(()=>window.location.href='https://gadgetsweb.xyz/homelander/', 2000);
|
||||
</script>
|
||||
|
||||
|
||||
</body></html>
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Redirecting ...</title>
|
||||
<meta name="referrer" content="no-referrer">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<meta name="author" content="s-b0t">
|
||||
<meta name="googlebot" content="noindex,nofollow">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
|
||||
<style>#container{width:100%;aspect-ratio:100 / 29}@media only screen and (min-width: 992px){img{height:80%!important;width:50%!important}}@media only screen and (min-width: 1200px){img{height:80%!important;width:50%!important}}.relative{position:relative}.bottom-left{position:absolute}.PurpleTxt{color:#7e41ff!important;font-weight:600;margin-left:.5ch;margin-right:.5ch}</style>
|
||||
</head>
|
||||
<body>
|
||||
Redirecting ..
|
||||
<script type="text/javascript">
|
||||
function stck(e,t,i){let n="";if(i){let o=new Date;o.setTime(o.getTime()+6e4*i),n="; expires="+o.toUTCString()}document.cookie=`${e}=${t}; path=/; SameSite=None; Secure${n}`}
|
||||
function s(e,t,i){let n=new Date,m={value:t,expiry:n.getTime()+i};window.localStorage.setItem(e,JSON.stringify(m));stck('xla',"s4t",4);}s('o','Y214WE0xWjNZbXRhVUdwMmIxQldObFo2ZFRCeFZVOXRRbmxxYVV0UU9XRk1Ta1ZoVFV0RmJYRXlTWFpaWVhVMWNubHFhVzVVT1dkTlNtdDFiM3BGZVhCNWFtbFdkbXAyYjJ4V05sWjZVMVpJZDA5M1JsSXdNa2RWZURWdk1rVkxSbnBqZGtWdGVHdEtlRm94YjBwV2JFSlZUVzVHVW1OcVRWUXhTWEY2U1V0SFlVMTFTVzFPTUUxVFJWUndTbE5MYmxWSmJscGhUMlJXWVRBOQ==',180*1000);setTimeout(()=>window.location.href='https://gadgetsweb.xyz/homelander/', 2000);
|
||||
</script>
|
||||
|
||||
|
||||
</body></html>
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Redirecting ...</title>
|
||||
<meta name="referrer" content="no-referrer">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<meta name="author" content="s-b0t">
|
||||
<meta name="googlebot" content="noindex,nofollow">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
|
||||
<style>#container{width:100%;aspect-ratio:100 / 29}@media only screen and (min-width: 992px){img{height:80%!important;width:50%!important}}@media only screen and (min-width: 1200px){img{height:80%!important;width:50%!important}}.relative{position:relative}.bottom-left{position:absolute}.PurpleTxt{color:#7e41ff!important;font-weight:600;margin-left:.5ch;margin-right:.5ch}</style>
|
||||
</head>
|
||||
<body>
|
||||
Redirecting ..
|
||||
<script type="text/javascript">
|
||||
function stck(e,t,i){let n="";if(i){let o=new Date;o.setTime(o.getTime()+6e4*i),n="; expires="+o.toUTCString()}document.cookie=`${e}=${t}; path=/; SameSite=None; Secure${n}`}
|
||||
function s(e,t,i){let n=new Date,m={value:t,expiry:n.getTime()+i};window.localStorage.setItem(e,JSON.stringify(m));stck('xla',"s4t",4);}s('o','Y214WE0xWjNZbXRhVUdwMmIxQldObFo2ZFRCeFZVOXRRbmxxYVV0UU9XRk1Ta1ZoVFV0RmJYRXlTWFpaWVhVMWNubHFhVzVVT1dkTlNtdDFiM3BGZVhCNWFtbFdkbXAyYjJ4V05sWjZVMVpJZDA5M1JsSXdNa2RWZURWdk1rVkxSbnBqZGtWdGVHdEtlRm94YjBwV2JFSlZUVzVHVW1OcVRWUXhTWEY2UldoSmVuVjVSVzFKWWt3eU5YaHdNV05NU21GQlFVVnRTRzFXWVRBOQ==',180*1000);setTimeout(()=>window.location.href='https://gadgetsweb.xyz/homelander/', 2000);
|
||||
</script>
|
||||
|
||||
|
||||
</body></html>
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Redirecting ...</title>
|
||||
<meta name="referrer" content="no-referrer">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<meta name="author" content="s-b0t">
|
||||
<meta name="googlebot" content="noindex,nofollow">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
|
||||
<style>#container{width:100%;aspect-ratio:100 / 29}@media only screen and (min-width: 992px){img{height:80%!important;width:50%!important}}@media only screen and (min-width: 1200px){img{height:80%!important;width:50%!important}}.relative{position:relative}.bottom-left{position:absolute}.PurpleTxt{color:#7e41ff!important;font-weight:600;margin-left:.5ch;margin-right:.5ch}</style>
|
||||
</head>
|
||||
<body>
|
||||
Redirecting ..
|
||||
<script type="text/javascript">
|
||||
function stck(e,t,i){let n="";if(i){let o=new Date;o.setTime(o.getTime()+6e4*i),n="; expires="+o.toUTCString()}document.cookie=`${e}=${t}; path=/; SameSite=None; Secure${n}`}
|
||||
function s(e,t,i){let n=new Date,m={value:t,expiry:n.getTime()+i};window.localStorage.setItem(e,JSON.stringify(m));stck('xla',"s4t",4);}s('o','Y214WE0xWjNZbXRhVUdwMmIxQldObFo2ZFRCeFZVOXRRbmxxYVV0UU9XRk1Ta1ZoVFV0RmJYRXlTWFpaWVhVMWNubHFhVzVVT1dkTlNtdDFiM3BGZVhCNWFtbFdkbXAyYjJ4V05sWjZVMVpJZDA5M1JsSXdNa2RWZURWdk1rVkxSbnBqZGtWdGVHdEtlRm94YjBwV2JFSlZUVzVHVW1OcVRWUXhTWEY0TVZWdlZVOUNTVk5KTmt4NWNXVnhNa2xWY0ZWUGRVcFVkVEpXWVRBOQ==',180*1000);setTimeout(()=>window.location.href='https://gadgetsweb.xyz/homelander/', 2000);
|
||||
</script>
|
||||
|
||||
|
||||
</body></html>
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Redirecting ...</title>
|
||||
<meta name="referrer" content="no-referrer">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<meta name="author" content="s-b0t">
|
||||
<meta name="googlebot" content="noindex,nofollow">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
|
||||
<style>#container{width:100%;aspect-ratio:100 / 29}@media only screen and (min-width: 992px){img{height:80%!important;width:50%!important}}@media only screen and (min-width: 1200px){img{height:80%!important;width:50%!important}}.relative{position:relative}.bottom-left{position:absolute}.PurpleTxt{color:#7e41ff!important;font-weight:600;margin-left:.5ch;margin-right:.5ch}</style>
|
||||
</head>
|
||||
<body>
|
||||
Redirecting ..
|
||||
<script type="text/javascript">
|
||||
function stck(e,t,i){let n="";if(i){let o=new Date;o.setTime(o.getTime()+6e4*i),n="; expires="+o.toUTCString()}document.cookie=`${e}=${t}; path=/; SameSite=None; Secure${n}`}
|
||||
function s(e,t,i){let n=new Date,m={value:t,expiry:n.getTime()+i};window.localStorage.setItem(e,JSON.stringify(m));stck('xla',"s4t",4);}s('o','Y214WE0xWjNZbXRhVUdwMmIxQldObFo2ZFRCeFZVOXRRbmxxYVV0UU9XRk1Ta1ZoVFV0RmJYRXlTWFpaWVhVMWNubHFhVzVVT1dkTlNtdDFiM3BGZVhCNWFtbFdkbXAyYjJ4V05sWjZVMVpJZDA5M1JsSXdNa2RWZURWdk1rVkxSbnBqZGtWdGVHdEtlRm94YjBwV2JFSlZUVzVHVW1OcVRWUXhTWEY1WTJkYVNqbE5iMHAwYlV4Nk1XSnVNa1J0VFZGRmJrVXhWbTFXWVRBOQ==',180*1000);setTimeout(()=>window.location.href='https://gadgetsweb.xyz/homelander/', 2000);
|
||||
</script>
|
||||
|
||||
|
||||
</body></html>
|
||||
|
|
@ -200,6 +200,95 @@ exports[`FourKHDHub handle dexter resurrection 2025 s01e01 1`] = `
|
|||
]
|
||||
`;
|
||||
|
||||
exports[`FourKHDHub handle f1 1`] = `
|
||||
[
|
||||
{
|
||||
"meta": {
|
||||
"bytes": 71296457113,
|
||||
"countryCodes": [
|
||||
"en",
|
||||
"hi",
|
||||
],
|
||||
"height": 2160,
|
||||
"title": "F1 - The Movie (2025) 2160p UHD BluRay REMUX DV HDR 10bit HEVC [Hindi-Tamil-Telugu DDP 5.1 + English TrueHD Atmos 7.1] x265 (CiNPEHiLES-LUMiX).mkv",
|
||||
},
|
||||
"url": "https://hubcloud.foo/drive/sbj15b8jgaxbnnq",
|
||||
},
|
||||
{
|
||||
"meta": {
|
||||
"bytes": 41414222151,
|
||||
"countryCodes": [
|
||||
"en",
|
||||
"hi",
|
||||
],
|
||||
"height": 2160,
|
||||
"title": "F1 - The Movie (2025) 2160p UHD BluRay DV HDR 10bit HEVC [Hindi-Tamil-Telugu DDP 5.1 + English TrueHD Atmos 7.1] x265 (WiKi-LUMiX).mkv",
|
||||
},
|
||||
"url": "https://hubcloud.foo/drive/0ii553mi0xjiixo",
|
||||
},
|
||||
{
|
||||
"meta": {
|
||||
"bytes": 30096983326,
|
||||
"countryCodes": [
|
||||
"en",
|
||||
"hi",
|
||||
],
|
||||
"height": 2160,
|
||||
"title": "F1 - The Movie (2025) 2160p iT WEB-DL 10bit HEVC [Hindi-Tamil-Telugu DDP 5.1 + English TrueHD Atmos 7.1] x265 (WADU-LUMiX).mkv",
|
||||
},
|
||||
"url": "https://hubcloud.foo/drive/vuaxnarwlevl0nw",
|
||||
},
|
||||
{
|
||||
"meta": {
|
||||
"bytes": 29785598197,
|
||||
"countryCodes": [
|
||||
"en",
|
||||
"hi",
|
||||
],
|
||||
"height": 1080,
|
||||
"title": "F1 - The Movie (2025) 1080p BluRay REMUX AVC [Hindi-Tamil-Telugu DDP 5.1 + English TrueHD Atmos 7.1] x264 (HDT-LUMiX).mkv",
|
||||
},
|
||||
"url": "https://hubcloud.foo/drive/ycoim8u1jihngjc",
|
||||
},
|
||||
{
|
||||
"meta": {
|
||||
"bytes": 21496311316,
|
||||
"countryCodes": [
|
||||
"en",
|
||||
"hi",
|
||||
],
|
||||
"height": 1080,
|
||||
"title": "F1 - The Movie (2025) 1080p UHD BluRay DV HDR 10bit HEVC [Hindi-Tamil-Telugu DDP 5.1 + English DDP 7.1] x265 (HiDt-LUMiX).mkv",
|
||||
},
|
||||
"url": "https://hubcloud.foo/drive/1eeyidcyrsiin17",
|
||||
},
|
||||
{
|
||||
"meta": {
|
||||
"bytes": 19520626360,
|
||||
"countryCodes": [
|
||||
"en",
|
||||
"hi",
|
||||
],
|
||||
"height": 1080,
|
||||
"title": "F1 - The Movie (2025) 1080p BluRay [Hindi-Tamil-Telugu DDP 5.1 + English DDP 7.1] x264 (SPHD-LUMiX).mkv",
|
||||
},
|
||||
"url": "https://hubcloud.foo/drive/az6ttan8ssdusn1",
|
||||
},
|
||||
{
|
||||
"meta": {
|
||||
"bytes": 11424613007,
|
||||
"countryCodes": [
|
||||
"en",
|
||||
"hi",
|
||||
],
|
||||
"height": 1080,
|
||||
"title": "F1 - The Movie (2025) 1080p BluRay 10bit HEVC [Hindi-Tamil-Telugu DDP 5.1 + English DDP 5.1] x265 (StOiC-LUMiX).mkv",
|
||||
},
|
||||
"url": "https://hubcloud.foo/drive/osj1xhy1lpsop5n",
|
||||
},
|
||||
]
|
||||
`;
|
||||
|
||||
exports[`FourKHDHub handle lovely runner 2024 s01e01 1`] = `
|
||||
[
|
||||
{
|
||||
|
|
@ -462,3 +551,64 @@ exports[`FourKHDHub handle superman 2025 1`] = `
|
|||
},
|
||||
]
|
||||
`;
|
||||
|
||||
exports[`FourKHDHub handle the tank 1`] = `
|
||||
[
|
||||
{
|
||||
"meta": {
|
||||
"bytes": 14688788152,
|
||||
"countryCodes": [
|
||||
"multi",
|
||||
"de",
|
||||
"en",
|
||||
"hi",
|
||||
],
|
||||
"height": 2160,
|
||||
"title": "The.Tank.2025.2160p.AMZN.WEB-DL.Multi.DDP5.1.HDR.H.265-4kHdHub.Com.mkv",
|
||||
},
|
||||
"url": "https://hubcloud.foo/drive/5ocppg18qpun5nb",
|
||||
},
|
||||
{
|
||||
"meta": {
|
||||
"bytes": 14667313315,
|
||||
"countryCodes": [
|
||||
"multi",
|
||||
"de",
|
||||
"en",
|
||||
"hi",
|
||||
],
|
||||
"height": 2160,
|
||||
"title": "The.Tank.2025.2160p.AMZN.WEB-DL.Multi.DDP5.1.H.265-4kHdHub.Com.mkv",
|
||||
},
|
||||
"url": "https://hubcloud.foo/drive/qzs8ys88skusyst",
|
||||
},
|
||||
{
|
||||
"meta": {
|
||||
"bytes": 9953586708,
|
||||
"countryCodes": [
|
||||
"multi",
|
||||
"de",
|
||||
"en",
|
||||
"hi",
|
||||
],
|
||||
"height": 1080,
|
||||
"title": "The.Tank.2025.1080p.AMZN.WEB-DL.Multi.DDP5.1.H.264-4kHdHub.Com.mkv",
|
||||
},
|
||||
"url": "https://hubcloud.foo/drive/7bm6zx26sf1ofis",
|
||||
},
|
||||
{
|
||||
"meta": {
|
||||
"bytes": 4456028569,
|
||||
"countryCodes": [
|
||||
"multi",
|
||||
"de",
|
||||
"en",
|
||||
"hi",
|
||||
],
|
||||
"height": 1080,
|
||||
"title": "The.Tank.2025.1080p.AMZN.WEB-DL.Multi.DDP5.1.H.265-4kHdHub.Com.mkv",
|
||||
},
|
||||
"url": "https://hubcloud.foo/drive/fmhbhwnhdwwxddw",
|
||||
},
|
||||
]
|
||||
`;
|
||||
|
|
|
|||
Loading…
Reference in a new issue