forked from BioKIC/Symbiota
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
33 lines (33 loc) · 1016 Bytes
/
index.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
<?php
include_once('config/symbini.php');
if($LANG_TAG == 'en' || !file_exists($SERVER_ROOT.'/content/lang/index.'.$LANG_TAG.'.php')) include_once($SERVER_ROOT.'/content/lang/index.en.php');
else include_once($SERVER_ROOT.'/content/lang/index.'.$LANG_TAG.'.php');
header('Content-Type: text/html; charset=' . $CHARSET);
?>
<html>
<head>
<title><?php echo $DEFAULT_TITLE; ?> Home</title>
<?php
include_once($SERVER_ROOT . '/includes/head.php');
include_once($SERVER_ROOT . '/includes/googleanalytics.php');
?>
</head>
<body>
<?php
include($SERVER_ROOT . '/includes/header.php');
?>
<div class="navpath"></div>
<div id="innertext">
<div class="lang en">
<h1>Welcome</h1>
<p>This data portal has been established to provide access to specimens generated or made available through the Plants and Lichens of the Southern Philippines project.</p>
</div>
</div>
<?php
include($SERVER_ROOT . '/includes/footer.php');
?>
<script type="text/javascript">
setLanguageDiv();
</script>
</body>
</html>