Skip to content

Commit

Permalink
Merge pull request #46 from glyptostrob0ides/master
Browse files Browse the repository at this point in the history
Index.php update
  • Loading branch information
egbot authored Oct 6, 2023
2 parents 18bafd9 + 82736ad commit c1dd92c
Showing 1 changed file with 121 additions and 35 deletions.
156 changes: 121 additions & 35 deletions index.php
Original file line number Diff line number Diff line change
@@ -1,40 +1,126 @@
<?php
include_once('../config/symbini.php');
header('Content-Type: text/html; charset='.$CHARSET);
header('Location: '.$CLIENT_ROOT.'/index.php');
include_once('config/symbini.php');
include_once('content/lang/index.'.$LANG_TAG.'.php');
header("Content-Type: text/html; charset=".$CHARSET);
?>
<html>
<head>
<title>Forbidden</title>
<?php
$activateJQuery = false;
if(file_exists($SERVER_ROOT.'/includes/head.php')){
include_once($SERVER_ROOT.'/includes/head.php');
<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 type="text/css">
#container5 {
clear:left;
float:left;
width:100%;
overflow:hidden;
background:#eee; /* column 5 background colour */
}
#container4 {
clear:left;
float:left;
width:100%;
position:relative;
right:20%;
background:#b2f0f9; /* column 4 background colour */
}
#container3 {
clear:left;
float:left;
width:100%;
position:relative;
right:20%;
background:#89ffa2; /* column 3 background colour */
}
#container2 {
clear:left;
float:left;
width:100%;
position:relative;
right:20%;
background:#ffa7a7; /* column 2 background colour */
}
#container1 {
float:left;
width:100%;
position:relative;
right:20%;
background:#fff689; /* column 1 background colour */
}
#col1 {
float:left;
width:16%;
position:relative;
left:82%;
overflow:hidden;
}
#col2 {
float:left;
width:16%;
position:relative;
left:86%;
overflow:hidden;
}
#col3 {
float:left;
width:16%;
position:relative;
left:90%;
overflow:hidden;
}
#col4 {
float:left;
width:16%;
position:relative;
left:94%;
overflow:hidden;
}
#col5 {
float:left;
width:16%;
position:relative;
left:98%;
overflow:hidden;
}
}
else{
echo '<link href="'.$CLIENT_ROOT.'/css/jquery-ui.css" type="text/css" rel="stylesheet" />';
echo '<link href="'.$CLIENT_ROOT.'/css/base.css?ver=1" type="text/css" rel="stylesheet" />';
echo '<link href="'.$CLIENT_ROOT.'/css/main.css?ver=1" type="text/css" rel="stylesheet" />';
}
?>
</head>
<body>
<?php
$displayLeftMenu = false;
include($SERVER_ROOT.'/includes/header.php');
?>
<!-- This is inner text! -->
<div id="innertext">
<h1>Forbidden</h1>
<div style="font-weight:bold;">
You don't have permission to access this page.
</div>
<div style="font-weight:bold;margin:10px;">
<a href="<?php echo $CLIENT_ROOT; ?>/index.php">Return to index page</a>

</style>
</head>
<body style="background-color:#FFFFFF">
<?php
include($SERVER_ROOT.'/includes/header.php');
?>
<!-- This is inner text! -->
<div id="innertext" style="padding-top:0px">
<section >
<div class="hero-bg">
<img style="width:100%" src="<?php echo $CLIENT_ROOT; ?>/images/layout/EcoFlorasNA_banner.png"/>
</div>
</div>
<?php
include($SERVER_ROOT.'/includes/footer.php');
?>
</body>
</html>
</section>


<div style="text-align:center; margin-left: 150px; margin-right:150px;">
<h1> Welcome to the EcoFloras of North America! </h1>
<hr>
<h2>What is an EcoFlora?</h2>
<p>EcoFloras are a new kind of flora that leverage the power of new technologies and community science to document and conserve native biodiversity. Pioneered by the New York Botanical Garden in 2017, EcoFloras are now being implemented by the Desert Botanical Garden, Denver Botanic Gardens, Marie Selby Botanical Gardens and the Chicago Botanic Garden. Visit the "Project Information" pages to learn more about their programs and information!</p>
<p>The projects combine existing knowledge from herbaria and libraries with real-time observations of plants and their ecological partners.</p>
<p>Participants are encouraged to explore their communities and record observations using iNaturalist or Budburst. Exploration of urban biodiversity supports increased environmental literacy and fosters public appreciation of the natural world, while engaging urban residents in local conservation advocacy</p>
<p>This site can be used to:
<ul style="text-align:center;list-style-position:inside;"><li>create dynamic species checklists for a defined area</li>
<li>search and browse herbarium specimens and real-time observations of plant taxa</li></ul></p>
<hr>
</div>
</div>
<?php
include($SERVER_ROOT.'/includes/footer.php');
?>
</body>
</html>

0 comments on commit c1dd92c

Please sign in to comment.