-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
46 lines (28 loc) · 847 Bytes
/
index.php
File metadata and controls
46 lines (28 loc) · 847 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
42
43
44
45
46
<?php include($_SERVER['DOCUMENT_ROOT'].'/perch/runtime.php'); ?>
<!doctype html>
<html lang="en">
<!-- Head -->
<head>
<!-- Meta -->
<meta charset="utf-8"/>
<title><?php perch_content('Company Name'); ?> | <?php perch_pages_title(); ?></title>
<?php perch_content('Meta'); ?>
<link rel="icon" type="image/ico" href="../favicon.ico">
<!-- Style -->
<link href="../css/build/global.css" media="screen, projection" rel="stylesheet" type="text/css" />
<!-- Responsive -->
<meta name="viewport" content="width=device-width"/>
</head>
<body>
<?php perch_layout('global.header'); ?>
<!-- Main -->
<div role="main">
<div class="grid pad wysiwyg">
<section>
<?php perch_content('Content'); ?>
</section>
</div>
</div>
<?php perch_layout('global.footer'); ?>
</body>
</html>