Skip to content

Instantly share code, notes, and snippets.

@Rizki36
Last active July 23, 2021 16:54
Show Gist options
  • Save Rizki36/1db3eed40047d1522024f4ed8ca54fb5 to your computer and use it in GitHub Desktop.
Save Rizki36/1db3eed40047d1522024f4ed8ca54fb5 to your computer and use it in GitHub Desktop.
@php
defined('BASEPATH') or exit('No direct script access allowed');
@endphp
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>@yield('title', 'Judul default')</title>
{{-- css global --}}
@include('layout/_css')
{{-- css spesifik --}}
@yield('css')
</head>
<body>
<div id="container">
<div id="body">
{{-- isi konten --}}
@yield('content')
</div>
</div>
{{-- js global --}}
@includeIf('layout/_js')
{{-- js spesifik --}}
@yield('js')
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment