-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add the Contact info on bottom of page
Started adding logos
- Loading branch information
1 parent
ab93c69
commit 3d3c8f4
Showing
8 changed files
with
170 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,93 @@ | ||
<?php | ||
/** | ||
* This is the SiteEng configuration file. | ||
* | ||
*/ | ||
$config = array( | ||
'SiteEng.Site.Title' => "SiteEng 2 - The Easiest Way to Edit Websites", | ||
'SiteEng.Site.URL' => "www.siteaddress.com", | ||
'SiteEng.Site.EditClass' => "editable", | ||
'SiteEng.Business.Schema' => "LocalBusiness", | ||
'SiteEng.Business.RealName' => "John Doe", | ||
'SiteEng.Business.Phone' => "(xxx) - xxx - xxx", | ||
'SiteEng.Business.Email' => "[email protected]", | ||
'SiteEng.Business.Address' => "123 abc road", | ||
'SiteEng.Business.City' => "wondervilee", | ||
'SiteEng.Business.State' => "MAGIC", | ||
'SiteEng.Business.Zip' => "12345", | ||
); | ||
$config = array ( | ||
'debug' => 1, | ||
'App' => | ||
array ( | ||
'fullBaseUrl' => 'http://designanddollc.com', | ||
'imageBaseUrl' => 'img/', | ||
'cssBaseUrl' => 'css/', | ||
'jsBaseUrl' => 'js/', | ||
'base' => false, | ||
'baseUrl' => false, | ||
'dir' => 'app', | ||
'webroot' => 'webroot', | ||
'www_root' => '/home2/jjprogra/public_html/designanddollc/app/webroot/', | ||
'encoding' => 'UTF-8', | ||
), | ||
'Error' => | ||
array ( | ||
'handler' => 'ErrorHandler::handleError', | ||
'level' => 24575, | ||
'trace' => true, | ||
), | ||
'Exception' => | ||
array ( | ||
'handler' => 'ErrorHandler::handleException', | ||
'renderer' => 'ExceptionRenderer', | ||
'log' => true, | ||
), | ||
'Session' => | ||
array ( | ||
'cookie' => 'CAKEPHP', | ||
'timeout' => 240, | ||
'ini' => | ||
array ( | ||
'session.use_trans_sid' => 0, | ||
'session.cookie_path' => '/', | ||
'session.cookie_lifetime' => 14400, | ||
'session.name' => 'CAKEPHP', | ||
'session.gc_maxlifetime' => 14400, | ||
'session.cookie_httponly' => 1, | ||
), | ||
'defaults' => 'php', | ||
'cookieTimeout' => 240, | ||
), | ||
'Security' => | ||
array ( | ||
'salt' => 'vFeT6nnOKJjqhdPMCvvBLV2xEmVNGudHqufXAztMbpmBmubnvHTtXpW2siI6bS3uRlnHF1BLLTz8PYubbQEqXYCInb8YwQKMTE4l02bhSL2n9pkpDdIonp77WZyajthg', | ||
'cipherSeed' => '47135367344545474569512402556285040834666378960090196570268554633197103182531795236040878422597103013069478217719947226765961420', | ||
), | ||
'Acl' => | ||
array ( | ||
'classname' => 'DbAcl', | ||
'database' => 'default', | ||
), | ||
'Dispatcher' => | ||
array ( | ||
'filters' => | ||
array ( | ||
0 => 'AssetDispatcher', | ||
1 => 'CacheDispatcher', | ||
2 => 'AssetDispatcher', | ||
3 => 'CacheDispatcher', | ||
4 => 'AssetDispatcher', | ||
5 => 'CacheDispatcher', | ||
6 => 'AssetDispatcher', | ||
7 => 'CacheDispatcher', | ||
), | ||
), | ||
'SiteEng' => | ||
array ( | ||
'Site' => | ||
array ( | ||
'Title' => 'Design and Do LLC', | ||
'URL' => 'http://www.designanddollc.com', | ||
'EditClass' => 'editable', | ||
), | ||
'Business' => | ||
array( | ||
'Schema' => "LocalBusiness", | ||
'Name' => "John Doe", | ||
'Phone' => "(xxx) - xxx - xxx", | ||
'Email' => "[email protected]", | ||
'Address' => "123 abc road", | ||
'City' => "wondervilee", | ||
'State' => "MAGIC", | ||
'Zip' => "12345", | ||
), | ||
), | ||
'Config' => | ||
array ( | ||
'language' => 'en-us', | ||
), | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<div id="footer"> | ||
<div id="SiteInfo" itemscope itemtype="http://schema.org/<?php echo Configure::read("SiteEng.Business.Schema");?>" > | ||
<span class="SiteInfoItem" itemprop="name" ><?php echo Configure::read("SiteEng.Business.Name");?></span> | ||
<span class="SiteInfoItem" itemprop="url" > | ||
<a href="<?php echo Configure::read("SiteEng.Site.URL");?>"><?php echo Configure::read("SiteEng.Site.URL");?></a> | ||
</span> | ||
<span itemprop="telephone" class="SiteInfoItem"> | ||
<a href="tel:<?php echo ereg_replace("[^0-9]", "", Configure::read("SiteEng.Business.Phone"));?>" > | ||
<?php echo Configure::read("SiteEng.Business.Phone");?> | ||
</a> | ||
</span> | ||
<span itemprop="email" class="SiteInfoItem"> | ||
<a href="mailto:<?php echo Configure::read("SiteEng.Business.Email");?>" > | ||
<?php echo Configure::read("SiteEng.Business.Email");?> | ||
</a> | ||
</span> | ||
<span itemprop="address" itemscope itemtype="http://schema.org/PostalAddress"> | ||
<span itemprop="streetAddress" class="SiteInfoItem"><?php echo Configure::read("SiteEng.Business.Address");?></span> | ||
<span itemprop="addressLocality" class="SiteInfoItem"><?php echo Configure::read("SiteEng.Business.City");?></span> | ||
<span itemprop="addressRegion" class="SiteInfoItem"><?php echo Configure::read("SiteEng.Business.State");?></span> | ||
<span itemprop="postalCode" class="SiteInfoItem"><?php echo Configure::read("SiteEng.Business.Zip");?></span> | ||
</span> | ||
</div> | ||
<div id="TechUsed"> | ||
<span class="TechUsedItem">Built By:</span> | ||
<span class="TechUsedItem"><?php echo $this->Html->link('<p id="SiteEngLogo">SiteEng</p>' ,'https://github.com/joewashear007/SiteEng', array('target' => '_blank', 'escape'=>false));?></span> | ||
<span class="TechUsedItem"><?php echo $this->Html->link($this->Html->image('cake.power.gif'),'http://www.cakephp.org/', array('target' => '_blank','escape'=>false));?></span> | ||
<span class="TechUsedItem"><?php echo $this->Html->link($this->Html->image('raptor-avatar.jpg'),'https://www.raptor-editor.com/', array('target' => '_blank','escape'=>false));?></span> | ||
<span class="TechUsedItem"><?php echo $this->Html->link('<p id="bootsrapLogo">Bootstrap</p>' ,'http://www.cakephp.org/', array('target' => '_blank','escape'=>false));?></span> | ||
</div> | ||
|
||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.