forked from CCH2-org/Symbiota
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_template.php
51 lines (51 loc) · 1.76 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
51
<?php
include_once('config/symbini.php');
include_once('content/lang/index.'.$LANG_TAG.'.php');
header("Content-Type: text/html; charset=".$CHARSET);
?>
<html>
<head>
<title><?php echo $DEFAULT_TITLE; ?> Home</title>
<?php
$activateJQuery = true;
include_once($SERVER_ROOT.'/includes/head.php');
include_once($SERVER_ROOT.'/includes/googleanalytics.php');
?>
<link href="css/quicksearch.css" type="text/css" rel="Stylesheet" />
<script src="js/jquery-3.2.1.min.js" type="text/javascript"></script>
<script src="js/jquery-ui-1.12.1/jquery-ui.min.js" type="text/javascript"></script>
<script src="js/symb/api.taxonomy.taxasuggest.js" type="text/javascript"></script>
<style>
#slideshowcontainer{
border: 2px solid black;
border-radius:10px;
padding:10px;
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
<?php
include($SERVER_ROOT.'/includes/header.php');
?>
<!-- This is inner text! -->
<div id="innertext">
<h1></h1>
<div id="quicksearchdiv">
<!-- -------------------------QUICK SEARCH SETTINGS--------------------------------------- -->
<form name="quicksearch" id="quicksearch" action="<?php echo $CLIENT_ROOT; ?>/taxa/index.php" method="get" onsubmit="return verifyQuickSearch(this);">
<div id="quicksearchtext" ><?php echo (isset($LANG['QSEARCH_SEARCH'])?$LANG['QSEARCH_SEARCH']:'Taxon Search'); ?></div>
<input id="taxa" type="text" name="taxon" />
<button name="formsubmit" id="quicksearchbutton" type="submit" value="Search Terms"><?php echo (isset($LANG['QSEARCH_SEARCH_BUTTON'])?$LANG['QSEARCH_SEARCH_BUTTON']:'Search'); ?></button>
</form>
</div>
<div style="padding: 0px 10px;">
Description and introduction of project
</div>
</div>
<?php
include($SERVER_ROOT.'/includes/footer.php');
?>
</body>
</html>