-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.php
More file actions
41 lines (31 loc) · 1013 Bytes
/
page.php
File metadata and controls
41 lines (31 loc) · 1013 Bytes
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
<!doctype html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title><?php echo $title;?></title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="/<?php echo Theme::path('css/style.css', TRUE, 'newadmin')?>">
<link rel="stylesheet" href="/<?php echo Theme::path('css/bootstrap.css', TRUE, 'newadmin')?>">
<link rel="stylesheet" href="/<?php echo Theme::path('css/admin.css', TRUE, 'newadmin')?>">
</head>
<body>
<header>
<?php echo Theme::view('fragments/header', FALSE, 'newadmin');?>
</header>
<div id="container">
<div class="container-fluid">
<div class="sidebar">
<?php echo $sidebar; ?>
</div>
<div id="main" class="content" role="main">
<?php echo $content; ?>
</div>
<footer>
<?php echo Theme::view('fragments/footer', FALSE, 'newadmin');?>
</footer>
</div>
</div>
</body>
</html>