31 lines
1.1 KiB
PHP
31 lines
1.1 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" class="scroll-smooth">
|
|
|
|
@include('partials.head')
|
|
|
|
<body class="font-sans antialiased">
|
|
<div class="flex flex-col min-h-screen bg-gray-100 dark:bg-neutral-900">
|
|
@include('layouts.navigation')
|
|
<!-- Page Content -->
|
|
<main>
|
|
@php $episode = $hentai->episodes[0]; @endphp
|
|
<div class="pt-6 mt-[65px]">
|
|
<div class="flex flex-col lg:flex-row justify-center">
|
|
<div class="pt-2 sm:px-2 lg:px-4 space-y-6 max-w-[100%] xl:max-w-[70%] 2xl:max-w-[60%] z-10">
|
|
@include('series.partials.info')
|
|
|
|
@include('series.partials.episodes')
|
|
|
|
@include('series.partials.comments')
|
|
</div>
|
|
|
|
@include('series.partials.popular')
|
|
|
|
</div>
|
|
</div>
|
|
</main>
|
|
@include('layouts.footer')
|
|
</div>
|
|
</body>
|
|
</html>
|