-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathindex_template.php
50 lines (46 loc) · 1.5 KB
/
index_template.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
40
41
42
43
44
45
46
47
48
49
50
<?php
include_once("config/symbini.php");
header("Content-Type: text/html; charset=".$CHARSET);
?>
<html>
<head>
<meta http-equiv="X-Frame-Options" content="deny">
<title><?php echo $DEFAULT_TITLE; ?> Home</title>
<link href="css/base.css?ver=<?php echo $CSS_VERSION; ?>" type="text/css" rel="stylesheet" />
<link href="css/main.css<?php echo (isset($CSS_VERSION_LOCAL)?'?ver='.$CSS_VERSION_LOCAL:''); ?>" type="text/css" rel="stylesheet" />
<script type="text/javascript">
<?php include_once($SERVER_ROOT.'/config/googleanalytics.php'); ?>
</script>
</head>
<body>
<?php
include($SERVER_ROOT.'/header.php');
?>
<!-- This is inner text! -->
<div id="innertext">
<h1></h1>
<div id="quicksearchdiv">
<div style="float:left;">
<?php
//---------------------------QUICK SEARCH SETTINGS---------------------------------------
//Title text that will appear.
$searchText = 'Search Taxon';
//Text that will appear on search button.
$buttonText = 'Search';
//---------------------------DO NOT CHANGE BELOW HERE-----------------------------
include_once($SERVER_ROOT.'/classes/PluginsManager.php');
$pluginManager = new PluginsManager();
$quicksearch = $pluginManager->createQuickSearch($buttonText,$searchText);
echo $quicksearch;
?>
</div>
</div>
<div style="padding: 0px 10px;">
Description and introduction of project
</div>
</div>
<?php
include($SERVER_ROOT.'/footer.php');
?>
</body>
</html>