72 lines
1.7 KiB
PHP
72 lines
1.7 KiB
PHP
|
<!-- Extend Layout -->
|
||
|
@extends('layout.app')
|
||
|
<!-- Add Custom CSS -->
|
||
|
@push('css')
|
||
|
|
||
|
|
||
|
@endpush
|
||
|
<!-- Add Content Here -->
|
||
|
@section('content')
|
||
|
<!-- Include Sidebar -->
|
||
|
@include('layout.navbars.sidebar', ['title' => 'Layanan Akademik'])
|
||
|
|
||
|
<!-- Content Wrapper. Contains page content -->
|
||
|
<div class="content-wrapper">
|
||
|
<!-- Content Header (Page header) -->
|
||
|
<section class="content-header">
|
||
|
<div class="container-fluid">
|
||
|
<div class="row mb-2">
|
||
|
<div class="col-sm-6">
|
||
|
<h1>Blank Page</h1>
|
||
|
</div>
|
||
|
<div class="col-sm-6">
|
||
|
<ol class="breadcrumb float-sm-right">
|
||
|
<li class="breadcrumb-item"><a href="#">Home</a></li>
|
||
|
<li class="breadcrumb-item active">Blank Page</li>
|
||
|
</ol>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div><!-- /.container-fluid -->
|
||
|
</section>
|
||
|
|
||
|
<!-- Main content -->
|
||
|
<section class="content">
|
||
|
|
||
|
<!-- Default box -->
|
||
|
<div class="card">
|
||
|
<div class="card-header">
|
||
|
<h3 class="card-title">Title</h3>
|
||
|
|
||
|
<div class="card-tools">
|
||
|
<button type="button" class="btn btn-tool" data-card-widget="collapse" title="Collapse">
|
||
|
<i class="fas fa-minus"></i>
|
||
|
</button>
|
||
|
<button type="button" class="btn btn-tool" data-card-widget="remove" title="Remove">
|
||
|
<i class="fas fa-times"></i>
|
||
|
</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="card-body">
|
||
|
Start creating your amazing application!
|
||
|
</div>
|
||
|
<!-- /.card-body -->
|
||
|
<div class="card-footer">
|
||
|
.
|
||
|
</div>
|
||
|
<!-- /.card-footer-->
|
||
|
</div>
|
||
|
<!-- /.card -->
|
||
|
|
||
|
</section>
|
||
|
<!-- /.content -->
|
||
|
</div>
|
||
|
<!-- /.content-wrapper -->
|
||
|
|
||
|
@endsection
|
||
|
|
||
|
<!-- Add Custom JS -->
|
||
|
@push('js')
|
||
|
|
||
|
@endpush
|
||
|
|