-
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.
updated site layout and added footer information
- Loading branch information
gabbydgab
committed
Jan 13, 2015
1 parent
76b7d5f
commit 9d5c26e
Showing
10 changed files
with
208 additions
and
19 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
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,77 @@ | ||
<div class="row-fluid"> | ||
<footer> | ||
<hr> | ||
<p>Copyright © <?php echo date('Y') ?> by <a href="<?php echo $this->url('home') ?>">Coding Matters, Inc.</a> <?php echo $this->translate('All rights reserved.') ?></p> | ||
</footer> | ||
<div class="container"> | ||
<div class="row" style="padding-bottom: 20px;"> | ||
<div class="col-md-7"> | ||
<div class="row"> | ||
<h4>Our Services: <small class="text-warning">** services coming soon</small></h4> | ||
<div class="col-md-6 col-sm-6"> | ||
<div class="col-sm-6 col-xs-6"> | ||
<h5>Branding</h5> | ||
<ul> | ||
<li>Logo</li> | ||
<li>Banner</li> | ||
<li>Business Cards</li> | ||
</ul> | ||
</div> | ||
<div class="col-sm-6 col-xs-6"> | ||
<h5>Marketing</h5> | ||
<ul> | ||
<li>SEO<span class="text-warning">**</span></li> | ||
<li>Email<span class="text-warning">**</span></li> | ||
<li>Ads<span class="text-warning">**</span></li> | ||
</ul> | ||
</div> | ||
<div class="clearfix"></div> | ||
</div> | ||
<div class="col-md-6 col-sm-6"> | ||
<div class="col-sm-6 col-xs-6"> | ||
<h5>Developing</h5> | ||
<ul> | ||
<li>Web Apps</li> | ||
<li>Mobile Apps<span class="text-warning">**</span></li> | ||
<li>API Service<span class="text-warning">**</span></li> | ||
</ul> | ||
</div> | ||
<div class="col-sm-6 col-xs-6"> | ||
<h5>Training</h5> | ||
<ul> | ||
<li>Programming<span class="text-warning">**</span></li> | ||
<li>Designing<span class="text-warning">**</span></li> | ||
<li>Marketing<span class="text-warning">**</span></li> | ||
</ul> | ||
</div> | ||
<div class="clearfix"></div> | ||
</div> | ||
</div> | ||
<div class="clearfix"></div> | ||
</div> | ||
<div class="col-md-5"> | ||
<div class="row" id="social-links"> | ||
<h4>Connect With Us:</h4> | ||
<div class="container"> | ||
<a href="https://www.facebook.com/codingmatters" target="_blank"> | ||
<i class="fa fa-facebook-square fa-3x" id="facebook"></i> | ||
</a> | ||
<!-- <a href="#" target="_blank"> | ||
<i class="fa fa-twitter-square fa-3x" id="twitter"></i> | ||
</a> | ||
<a href="#" target="_blank"> | ||
<i class="fa fa-linkedin-square fa-3x" id="linkedin"></i> | ||
</a>--> | ||
</div> | ||
</div> | ||
<div class="row" id="legal-links"> | ||
<h4>Our Legal Information:</h4> | ||
<div class="col-sm-3 col-xs-3"><a href="<?php echo $this->url('terms-and-condition'); ?>">Terms</a></div> | ||
<div class="col-sm-3 col-xs-3"><a href="<?php echo $this->url('privacy-policy'); ?>">Privacy</a></div> | ||
<div class="col-sm-3 col-xs-3"><a href="<?php echo $this->url('disclaimer'); ?>">Disclaimer</a></div> | ||
<div class="col-sm-3 col-xs-3"><a href="<?php echo $this->url('copyright'); ?>">Copyright</a></div> | ||
</div> | ||
<div class="clearfix"></div> | ||
</div> | ||
<div class="clearfix"></div> | ||
</div> | ||
<div class="clearfix"></div> | ||
<div class="row"> | ||
<span> © <?php echo date('Y'); ?> Coding Matters, Inc. All rights reserved.</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
<?php echo $this->doctype(); ?> | ||
|
||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta description="Our forte is building software applications for web and mobile platforms. The way we develop software applications, coding in particular, matters most. It's our responsibility to be creative and to be innovative in delivering software that harness the competitive advantage of our clients but most importantly we do it right."> | ||
<?php echo $this->headMeta()->appendHttpEquiv('X-UA-Compatible', 'IE=edge') | ||
->appendName('viewport', 'width=device-width, initial-scale=1.0'); | ||
?> | ||
<?php echo $this->headTitle('Coding Matters') | ||
->setSeparator(' - ') | ||
->setAutoEscape(false); | ||
?> | ||
<?php echo $this->headLink(['rel' => 'shortcut icon', 'href' => $this->basePath() . '/img/favicon.ico']) | ||
->prependStylesheet($this->basePath() . '/css/style.css') | ||
->prependStylesheet($this->basePath() . '/assets/font-awesome/css/font-awesome.css') | ||
->prependStylesheet($this->basePath() . '/assets/bootstrap/css/bootstrap-theme.min.css') | ||
->prependStylesheet($this->basePath() . '/assets/bootstrap/css/bootstrap.min.css') | ||
?> | ||
</head> | ||
<body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top"> | ||
<!-- Navigation --> | ||
<nav class="navbar navbar-custom navbar-fixed-top" role="navigation"> | ||
<div class="container"> | ||
<div class="navbar-header"> | ||
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-main-collapse"> | ||
<i class="fa fa-bars"></i> | ||
</button> | ||
<a class="navbar-brand page-scroll" href="<?php echo $this->url('home'); ?>"> | ||
<img src="<?php echo $this->basePath(). "/img/logo-main.png";?>" class="logo" alt="Coding Matters Logo" data-src="<?php echo $this->basePath(). "/img/logo-main.png";?>" data-src-retina="<?php echo $this->basePath(). "/img/logo-main.png";?>" height="120px"/> | ||
</a> | ||
</div> | ||
|
||
<!-- Collect the nav links, forms, and other content for toggling --> | ||
<div class="collapse navbar-collapse navbar-right navbar-main-collapse"> | ||
<ul class="nav navbar-nav"> | ||
<!-- Hidden li included to remove active class from about link when scrolled up past about section --> | ||
<li class="hidden"> | ||
<a href="#page-top"></a> | ||
</li> | ||
<li> | ||
<a class="page-scroll" href="#services">SERVICES</a> | ||
</li> | ||
<li> | ||
<a class="page-scroll" href="#about">ABOUT</a> | ||
</li> | ||
</ul> | ||
</div> | ||
<!-- /.navbar-collapse --> | ||
</div> | ||
<!-- /.container --> | ||
</nav> | ||
|
||
<!-- Intro Header --> | ||
<header class="intro"> | ||
<div class="intro-body"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-md-8"> | ||
<h1 class="brand-heading">Why <strong>CODING MATTERS?</strong></h1> | ||
<p class="intro-text">We are creative and innovative in business processes that harness the competitive advantage of our clients. Most importantly, the way we develop software applications, coding in particular, matters most. <strong>WE DO IT RIGHT</strong>.</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</header> | ||
<!--<div class="container">--> | ||
<?php echo $this->content; ?> | ||
<!--</div>--> | ||
<footer> | ||
<?php echo $this->partial('template/footer', array()); ?> | ||
</footer> | ||
<?php echo $this->inlineScript() | ||
->prependFile($this->basePath() . '/js/navbar-header-collapse.js') | ||
->prependFile($this->basePath() . '/assets/bootstrap/js/tab.js') | ||
->prependFile($this->basePath() . '/assets/bootstrap/js/tooltip.js') | ||
->prependFile($this->basePath() . '/assets/bootstrap/js/popover.js') | ||
// ->prependFile($this->basePath() . '/assets/jquery-ui/jquery-ui.min.js') | ||
->prependFile($this->basePath() . '/assets/bootstrap/js/bootstrap.min.js') | ||
->prependFile($this->basePath() . '/assets/jquery/jquery.min.js'); | ||
?> | ||
</body> | ||
</html> |
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.