-
Notifications
You must be signed in to change notification settings - Fork 0
/
html.php
44 lines (40 loc) · 1.67 KB
/
html.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE HTML>
<!--
Editorial by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html lang="fr">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title><?php echo htmlspecialchars($title); ?></title>
<?php if ($favicon): ?>
<link rel="shortcut icon" type="image/png" href="<?php echo $favicon; ?>"/>
<?php endif; ?>
<?php echo $meta; ?>
<?php echo $styles; ?>
<link rel="stylesheet" href="<?php echo $base_theme; ?>assets/css/main.css" />
<link rel="stylesheet" href="<?php echo $base_theme; ?>assets/css/admin.css" />
</head>
<body class="is-preload">
<!-- Wrapper -->
<div id="wrapper">
<?php echo $section[ 'page' ]; ?>
<?php if (isset($section[ 'page_bottom' ])): ?>
<?php echo $section[ 'page_bottom' ]; ?>
<?php endif; ?>
</div>
<!-- Scripts -->
<?php echo $scripts; ?>
<script src="https://code.jquery.com/ui/1.12.0/jquery-ui.min.js"
integrity="sha256-eGE6blurk5sHj+rmkfsGYeKyZx3M4bG+ZlFyA7Kns7E="
crossorigin="anonymous">
</script>
<?php echo $script_inline; ?>
<script src="<?php echo $base_theme; ?>assets/js/browser.min.js"></script>
<script src="<?php echo $base_theme; ?>assets/js/breakpoints.min.js"></script>
<script src="<?php echo $base_theme; ?>assets/js/util.js"></script>
<script src="<?php echo $base_theme; ?>assets/js/main.js"></script>
</body>
</html>