-
Notifications
You must be signed in to change notification settings - Fork 0
/
html.php
45 lines (37 loc) · 1.81 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
45
<!DOCTYPE html>
<html lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title><?php echo htmlspecialchars($title); ?></title>
<?php echo $meta; ?>
<?php echo $styles; ?>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu"
crossorigin="anonymous">
<link rel="stylesheet" href="<?php echo $base_theme; ?>assets/css/styles.css">
<link rel="stylesheet" href="<?php echo $base_theme; ?>assets/css/admin.css">
</head>
<body>
<?php echo $section[ 'page' ]; ?>
<?php if (isset($section[ 'page_bottom' ])): ?>
<?php echo $section[ 'page_bottom' ]; ?>
<?php endif; ?>
<!-- To top -->
<div id="btn_up">
<img style="opacity: .5;" src="<?php echo $base_theme; ?>assets/files/arrow.png" alt="Scroll to top" width="40"/>
</div>
<?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>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"
integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd"
crossorigin="anonymous">
</script>
<script src="<?php echo $base_theme; ?>assets/js/script.js"></script>
<?php echo $script_inline; ?>
</body>
</html>