-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.html
46 lines (39 loc) · 885 Bytes
/
search.html
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
<!DOCTYPE html>
<html>
<head>
<title>Search - UC Santa Cruz Confessions</title>
<?php
include $_SERVER["DOCUMENT_ROOT"] . "/includes/head.html";
?>
</head>
<body>
<header>
<?php
include $_SERVER["DOCUMENT_ROOT"] . "/includes/header.html";
?>
</header>
<section id="content">
<h1>Search</h1>
<div>
<script>
(function() {
var cx = '002797840689156555429:h0xbfpjhtio';
var gcse = document.createElement('script');
gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +
'//www.google.com/cse/cse.js?cx=' + cx;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(gcse, s);
})();
</script>
<gcse:search></gcse:search>
</div>
</section>
<nav>
<?php
include $_SERVER["DOCUMENT_ROOT"] . "/includes/nav.html";
?>
</nav>
</body>
</html>