Please use this page as a guide line for managing the content and the structure of the site.
The file ‘pagestructure.php’ –
holds all the pages, if a new page is created,
you will need to add the page in this file in order for it to be seen.
The code looks like this:
<div class="row-fluid pages tab-content">
<?php include('views/pages/home.php'); ?>
<?php include('views/pages/goodtoknow.php'); ?>
<?php include('views/pages/goodtogo.php'); ?>
<?php include('views/pages/googlemap.php'); ?>
</div>
At the moment 4 pages are available, and all are added in this tag with the structure:<?php include('views/pages/nameofpage.php'); ?>
<div id="name-of-page" class="tab-pane page row-fluid box-radius20">
<div class="content">
<div class="row-fluid">
<button class="close clearfix">×</button>
</div>
<!-- insert content in this tag -->
<div class="row-fluid">
<div class="span12">
<p>
Insert home content here
</p>
</div>
</div>
</div>
</div><!-- #name of page -->
<div id="name-of-page" class="tab-pane page row-fluid box-radius20">
<div class="row-fluid">
<div class="span12">
<p>
Insert home content here
</p>
</div>
</div>
<p>
Insert home content here
</p>
You can also add whatever html you like in here,
it is a good idea to read up on bootstrap,
to help you build extra content on these pages and have it also show better on mobile.
All layers are controlled by one file ‘layerstructure.php’, in the file you will notice that there are
5 layers all commented with:
<!-- nth Layer --> nth stands for the order of the layer,
the order of the layers determine which layer show’s in front or
behind which layer.
Each layer is constructed with this :
<div class="span12 floater parallax-layer" style="width:2564px; bottom:0px; z-index:90;">
<!-- layer background -->
<img class="floater" src="img/sky.png" border="0" style="top:0px;" />
<!-- plants -->
<img data-toggle="popover" data-placement="right" data-content="This is the tree content"
data-original-title="Beech Tree" class="plant floater" src="img/plants/beech_tree.png"
border="0" style="bottom:277px; left:2%"/>
</div><!-- .background-slider -->
<div class="span12 floater parallax-layer" style="width:2564px; bottom:0px; z-index:90;">
<img class="floater" src="img/sky.png" border="0" style="top:0px;" />
<!-- plants -->
<img data-toggle="popover" data-placement="right" data-content="This is the tree content"
data-original-title="Beech Tree" class="plant floater" src="img/plants/beech_tree.png"
border="0" style="bottom:277px; left:2%"/>
style="bottom:277px; left:2%"