62 lines
2.3 KiB
Twig
62 lines
2.3 KiB
Twig
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<link rel="apple-touch-icon" sizes="76x76" href="{{ asset('img/apple-icon.png') }}">
|
|
<link rel="icon" type="image/png" href="{{ asset('img/favicon.png') }}">
|
|
<title>
|
|
{% block title %}CM Tracker
|
|
{% endblock %}
|
|
</title>
|
|
|
|
<!-- Simple CSS
|
|
<link
|
|
rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">-->
|
|
|
|
<!-- Fonts and icons -->
|
|
<link
|
|
rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Inter:300,400,500,600,700,900"/>
|
|
<!-- Nucleo Icons -->
|
|
<link href="{{ asset('css/nucleo-icons.css') }}" rel="stylesheet"/>
|
|
<link
|
|
href="{{ asset('css/nucleo-svg.css') }}" rel="stylesheet"/>
|
|
<!-- Font Awesome Icons -->
|
|
<script src="https://kit.fontawesome.com/f15a79324f.js" crossorigin="anonymous"></script>
|
|
<!-- Material Icons -->
|
|
<link
|
|
rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@24,400,0,0"/>
|
|
<!-- CSS Files -->
|
|
<link id="pagestyle" href="{{ asset('css/material-dashboard.css') }}?v=3.2.0" rel="stylesheet"/> {% block stylesheets %}{% endblock %}
|
|
</head>
|
|
|
|
<body class="bg-gray-200"> {% block body %}{% endblock %}
|
|
|
|
{% block javascripts %}
|
|
<script src="{{ asset('js/core/popper.min.js') }}"></script>
|
|
<script src="{{ asset('js/core/bootstrap.min.js') }}"></script>
|
|
<script src="{{ asset('js/plugins/perfect-scrollbar.min.js') }}"></script>
|
|
<script src="{{ asset('js/plugins/smooth-scrollbar.min.js') }}"></script>
|
|
<script>
|
|
var win = navigator.platform.indexOf('Win') > -1;
|
|
if (win && document.querySelector('#sidenav-scrollbar')) {
|
|
var options = {
|
|
damping: '0.5'
|
|
}
|
|
Scrollbar.init(document.querySelector('#sidenav-scrollbar'), options);
|
|
}
|
|
</script>
|
|
<!-- Github buttons -->
|
|
<script async defer src="https://buttons.github.io/buttons.js"></script>
|
|
<!-- Control Center for Material Dashboard: parallax effects, scripts for the example pages etc -->
|
|
<script src="{{ asset('js/material-dashboard.js') }}?v=3.2.0"></script>
|
|
|
|
<script src='{{ asset('js/script.js') }}'></script>
|
|
|
|
{% block importmap %}
|
|
{{ importmap('app') }}
|
|
{% endblock %}
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|