Created
June 20, 2014 09:13
-
-
Save sunilw/0c7967214c5517dab3d8 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<?php | |
/** | |
* The template for displaying all pages. | |
* | |
* This is the template that displays the front page | |
* | |
* @package larkin square | |
*/ | |
get_header('frontpage'); ?> | |
<div id="primary" class="content-area"> | |
<main id="main" class="site-main" role="main"> | |
<article id="frontpage-events"> | |
<div class="inner-row title-container"> | |
<h2>Attend an Upcoming Event</h2> | |
</div> | |
<?php larkinevents_small() ; ?> | |
<?php larkinevents_tplus() ; ?> | |
</article> <!-- ENDS #frontpage-events --> | |
<article id="filling-station-intro" class="group"> | |
<header> | |
<div class="delim"></div> | |
</header> | |
<section id="filling-station-calls" class="group"> | |
<h2>Dine With Us</h2> | |
<p class="group"> | |
<a href="" class="first" >Make a Reservation</a> | |
<a href="" class="second">View Our Menu</a> | |
</p> | |
</section> | |
</article> <!-- ENDS #filling-station-intro --> | |
<article id="sponsers"> | |
<div class="inner-row title-container"><h2>Our Sponsors</h2></div> | |
<div class="inner-row"> | |
<div class="sponser-container"> | |
<section> | |
<span class="first"> | |
<a href="#" alt="First Niagara"> | |
<img src="<?php echo get_template_directory_uri() ?>/img/sponsors/first-niagara.jpg" | |
alt="First Niagara"/> | |
</a> | |
</span> | |
</section> | |
<section> | |
<span class="second"> | |
<a href="#" alt="Independant Health"> | |
<img src="<?php echo get_template_directory_uri() ?>/img/sponsors/independent-health.jpg" | |
alt="First Niagara"/> | |
</a> | |
</span> | |
</section> | |
</div> | |
</div> | |
</article> | |
</main><!-- ENDS #main --> | |
</div><!-- ENDS #primary --> | |
<?php get_footer(); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment