67 lines
2.8 KiB
PHP
67 lines
2.8 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, shrink-to-fit=no" name="viewport">
|
|
<title>@yield('title') | {{ config('app.name') }}</title>
|
|
|
|
<!-- General CSS Files -->
|
|
<link href="{{ asset('assets/css/bootstrap.min.css') }}" rel="stylesheet" type="text/css"/>
|
|
<link rel="stylesheet" href="{{ asset('css/font-awesome.min.css') }}">
|
|
|
|
<!-- Template CSS -->
|
|
<link rel="stylesheet" href="{{ asset('web/css/style.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('web/css/components.css')}}">
|
|
<link rel="stylesheet" href="{{ asset('assets/css/iziToast.min.css') }}">
|
|
<link href="{{ asset('assets/css/sweetalert.css') }}" rel="stylesheet" type="text/css"/>
|
|
<link href="{{ asset('assets/css/select2.min.css') }}" rel="stylesheet" type="text/css"/>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app">
|
|
<section class="section">
|
|
<div class="container mt-3">
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="login-brand">
|
|
<img src="{{ asset('img/logo-utama.png') }}" alt="logo" width="300">
|
|
</div>
|
|
@yield('content')
|
|
<div class="simple-footer">
|
|
{{-- Copyright © {{ getSettingValue('application_name') }} {{ date('Y') }}--}}
|
|
</div>
|
|
</div>
|
|
<div class="col-md-5 my-5 ml-4">
|
|
<div class="section-body">
|
|
<h2 class="section-title">Guidelines</h2>
|
|
<p class="section-lead">
|
|
Watch this video for more information about this website.
|
|
</p>
|
|
<!-- Your content goes here -->
|
|
</div>
|
|
<div class="row mt-5 pt-5">
|
|
<div class="card">
|
|
<iframe width="500" height="400" src="https://www.youtube.com/embed/M6u2g7oO80c" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
|
|
<!-- General JS Scripts -->
|
|
<script src="{{ asset('assets/js/jquery.min.js') }}"></script>
|
|
<script src="{{ asset('assets/js/popper.min.js') }}"></script>
|
|
<script src="{{ asset('assets/js/bootstrap.min.js') }}"></script>
|
|
<script src="{{ asset('assets/js/jquery.nicescroll.js') }}"></script>
|
|
|
|
<!-- JS Libraies -->
|
|
|
|
<!-- Template JS File -->
|
|
<script src="{{ asset('web/js/stisla.js') }}"></script>
|
|
<script src="{{ asset('web/js/scripts.js') }}"></script>
|
|
<script src="{{ mix('js/app.js') }}"></script>
|
|
<!-- Page Specific JS File -->
|
|
</body>
|
|
</html>
|