Init
This commit is contained in:
30
resources/views/series/index.blade.php
Normal file
30
resources/views/series/index.blade.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<!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>
|
Reference in New Issue
Block a user