-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml.php
39 lines (34 loc) · 1.6 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
<!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 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/layout.css">
<link rel="stylesheet" href="<?php echo $base_theme; ?>assets/css/style.css">
<link rel="stylesheet" href="<?php echo $base_theme; ?>assets/css/admin.css">
<link rel="stylesheet" href="<?php echo $base_theme; ?>assets/css/menu.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.svg" alt="Scroll to top" role="button" 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="<?php echo $base_theme; ?>assets/js/script.js"></script>
</body>
</html>