130 lines
3.7 KiB
PHP
130 lines
3.7 KiB
PHP
<!DOCTYPE html>
|
|
<!--
|
|
This is a starter template page. Use this page to start your new project from
|
|
scratch. This page gets rid of all links and provides the needed markup only.
|
|
-->
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
|
|
<title>iCLOP - Administrator Site</title>
|
|
|
|
<!-- Font Awesome Icons -->
|
|
<link rel="stylesheet" href="{{asset('lte/plugins/fontawesome-free/css/all.min.css')}}">
|
|
<!-- Theme style -->
|
|
<link rel="stylesheet" href="{{asset('lte/dist/css/adminlte.min.css')}}">
|
|
<!-- Google Font: Source Sans Pro -->
|
|
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
|
|
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
|
|
<link rel="stylesheet" href="https://cdn.datatables.net/2.0.3/css/dataTables.dataTables.css" />
|
|
|
|
<script type="module" src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.esm.js"></script>
|
|
<script nomodule src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.js"></script>
|
|
|
|
<!-- jQuery -->
|
|
<script src="{{asset('lte/plugins/jquery/jquery.min.js')}}"></script>
|
|
<x-head.tinymce-config/>
|
|
<style>
|
|
.ck-content > p{
|
|
height: 300px !important;
|
|
}
|
|
.pulse {
|
|
animation: pulse-animation 1s infinite;
|
|
}
|
|
|
|
@keyframes pulse-animation {
|
|
0% {
|
|
box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
|
|
}
|
|
100% {
|
|
box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
@php
|
|
|
|
$menu = "hold-transition sidebar-mini";
|
|
$uri = request()->segment(3);
|
|
|
|
if ( $uri == "overview" || $uri == "overview-student" ) {
|
|
|
|
$menu = "sidebar-mini sidebar-collapse";
|
|
}
|
|
|
|
|
|
@endphp
|
|
<body class="{{ $menu }}">
|
|
<div class="wrapper">
|
|
|
|
<!-- Navbar -->
|
|
@include('php/teacher/header')
|
|
<!-- /.navbar -->
|
|
|
|
<!-- Main Sidebar Container -->
|
|
@include('php/teacher/sidebar')
|
|
|
|
<!-- Content Wrapper. Contains page content -->
|
|
<div class="content-wrapper">
|
|
<!-- Content Header (Page header) -->
|
|
|
|
<!-- /.content-header -->
|
|
|
|
<!-- Main content -->
|
|
@yield('content')
|
|
<!-- /.content -->
|
|
</div>
|
|
<!-- /.content-wrapper -->
|
|
|
|
<!-- Control Sidebar -->
|
|
<aside class="control-sidebar control-sidebar-dark">
|
|
<!-- Control sidebar content goes here -->
|
|
<div class="p-3">
|
|
<h5>Title</h5>
|
|
<p>Sidebar content</p>
|
|
</div>
|
|
</aside>
|
|
<!-- /.control-sidebar -->
|
|
|
|
<!-- Main Footer -->
|
|
@include('php/teacher/footer')
|
|
|
|
</div>
|
|
<!-- ./wrapper -->
|
|
|
|
<!-- REQUIRED SCRIPTS -->
|
|
|
|
|
|
<!-- Bootstrap 4 -->
|
|
<script src="{{asset('lte/plugins/bootstrap/js/bootstrap.bundle.min.js')}}"></script>
|
|
<!-- AdminLTE App -->
|
|
<script src="{{asset('lte/dist/js/adminlte.min.js')}}"></script>
|
|
<script src="https://cdn.datatables.net/2.0.3/js/dataTables.js"></script>
|
|
<script src="https://cdn.ckeditor.com/ckeditor5/34.2.0/classic/ckeditor.js">
|
|
|
|
<script>
|
|
$(document).ready( function () {
|
|
$('#myTable').DataTable();
|
|
} );
|
|
</script>
|
|
|
|
<script ></script>
|
|
<script type="text/javascript">
|
|
|
|
ClassicEditor
|
|
.create(document.querySelector('#editor'), {
|
|
|
|
ckfinder: {
|
|
uploadUrl: '{{route('uploadimage').'?_token='.csrf_token()}}',
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|