-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.php
More file actions
52 lines (32 loc) · 977 Bytes
/
search.php
File metadata and controls
52 lines (32 loc) · 977 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
47
48
49
50
51
52
<?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">
<section>
<?php perch_search_form(); ?>
<?php
$query = perch_get('q'); // 'q' query string argument e.g. search.php?q=apples
perch_content_search($query);
?>
</section>
</div>
</div>
<?php perch_layout('global.footer'); ?>
</body>
</html>