29 lines
618 B
PHP
29 lines
618 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
@include('landing.partials.head')
|
|
</head>
|
|
|
|
<body class="index-page">
|
|
@include('landing.partials.header')
|
|
|
|
<main class="main">
|
|
@yield('content')
|
|
</main>
|
|
|
|
@include('landing.partials.footer')
|
|
|
|
<!-- Scroll Top -->
|
|
<a href="#" id="scroll-top" class="scroll-top d-flex align-items-center justify-content-center">
|
|
<i class="bi bi-arrow-up-short"></i>
|
|
</a>
|
|
|
|
@include('landing.partials.scripts')
|
|
@stack('scripts') {{-- jika ada tambahan dari komponen --}}
|
|
<!-- WAJIB (Reverb menggunakan protokol Pusher) -->
|
|
|
|
</body>
|
|
|
|
</html>
|