index.php update from filler text, updated to site styles
authorLaury GvR <laury@gaslightmedia.com>
Mon, 30 Mar 2015 17:58:09 +0000 (13:58 -0400)
committerLaury GvR <laury@gaslightmedia.com>
Mon, 30 Mar 2015 17:58:09 +0000 (13:58 -0400)
index.php
page.php

index a748b9e..142503a 100644 (file)
--- a/index.php
+++ b/index.php
@@ -1,51 +1,22 @@
 <?php get_header(); ?>
-            <div class="show-for-medium-up">
-            <div class="slider">
-            </div>
-            <div class="thumb-nav">
-                <div class="row">
-                    <div id="thumb" class="large-12 show-for-large-up">
-                        <img src="assets/slide_sub1.jpg">
-                        <img src="assets/slide_sub2.jpg">
-                        <img src="assets/slide_sub3.jpg">
-                        <img src="assets/slide_sub4.jpg">
-                    </div>
+    <div class="main">
+        <div id="content-wrapper" class="row">
+             <div class="row">
+                 <?php
+                 get_template_part('parts/bread-crumbs');
+                 ?>
+             </div>
+             <div class="row">
+                <div id="main-content" class="small-12 columns">
+                        <?php if(have_posts()) : while(have_posts()): the_post();?>
+                        <h2><?php the_title();?></h2>
+                        <?php the_content();?>
+                        <?php endwhile; else:?>
+                        <p><?php _e('Sorry, no posts yet');?></p>
+                        <?php endif;?>
                 </div>
             </div>
-            </div>
-            <div class="row content">
-                <div class="small-12 columns">
-                    <h2>Welcome</h2>
-                    <p>On a 90-acre historic campus midway between Detroit and Chicago is the Gilmore Car Museum. Here, visitors shoot the breeze in an old-fashioned gas station. Children stand inches from a 1930 Rolls-Royce that’s from a Disney&reg; movie. Grandparents share stories about a ’57 Chevy, as their smiles are reflected in the car’s chrome. Stroll the campus. Eat lunch in our authentic Blue Moon Diner. Walk right upto an amazing collection of over 300 vintage automobiles, motorcycles, and memories. It’s America’s Signature Collection. And the ultimate experience for everyone in your family.</p>
-                </div>
-                <div id="news" class="small-12 medium-6 large-4 columns">
-                    <h3 class="text-center">News</h3>
-                    <div class="feed">
-                        <img src="assets/news_img.jpg">
-                        <p>Sunday, June 7, 2015<br><p class="event">Classic Car Club of <br>American Museum <br>"Grand Experience"</p></p>
-                        <p>Saturday, June 13, 2015<br><p class="event">Pre-Show Vintage <br>Motorcycle Ride</p></p>
-                        <p>Sunday, June 14, 2015<br><p class="event">One Example Event</p></p>
-                        <label><a href="#">More News</a></label>
-                    </div>
-                </div>
-                <div id="upcoming" class="small-12 medium-6 large-4 columns">
-                    <h3 class="text-center">Upcoming Events</h3>
-                    <div class="feed">
-                        <img src="assets/event_image.jpg">
-                        <p>Pint with the Past<br>Saturday, February 14th<br>7:00pm - 10:00pm</p>
-                        <p>Under the Hood<br>February 27, 2015 - March 1, 2015<br>Open during regular GCM hours</p>
-                        <p>Cars and Canvas<br>Sunday, March 15th<br>2:00pm - 6:00pm</p>
-                        <label><a href="#">View All Events</a></label>
-                    </div>
-                </div>
-                <div id="partners" class="small-12 medium-6 large-4 columns end">
-                    <h3 class="text-center">Featured Partner</h3>
-                    <div class="feed">
-                        <img src="assets/partner_img.jpg">
-                        <p>Did you know we have 7 onsite partner museums?</p>
-                        <p>Our featured partner this month is the H.H. Franklin Club. This permanent exhibit includes automobiles, engines, and artifacts that span the four-decade history of the H.H. Franklin Company.</p>
-                        <label><a href="#">View All Partners</a></label>
-                    </div>
                 </div>
             </div>
-<?php get_footer(); ?>
\ No newline at end of file
+        </div>
+<?php get_footer(); ?>
index 87e9cd8..719e235 100644 (file)
--- a/page.php
+++ b/page.php
@@ -1,23 +1,23 @@
 <?php get_header(); ?>
-            <div id="content_wrapper" class='side-shadow'>
-                <div class="row content">
-                    <div class="small-12 columns">
-                        <?php
-                    if(function_exists('bcn_display') && !is_front_page()) {
-                        echo "<div class=\"breadcrumbs\">";
-                        bcn_display();
-                        echo "</div>";
-                    }
-                    ?>
-                    </div>
-    <?php get_sidebar(); ?>
-                    <div class="small-12 medium-9 columns main">
-                        <?php if(have_posts()) : while(have_posts()): the_post();?>
-                            <?php the_content();?>
-                        <?php endwhile; else:?>
-                            <p><?php _e('Sorry, no posts yet');?></p>
-                        <?php endif;?>
-                    </div>
-                </div>
+    <div id="content-wrapper" class='side-shadow row'>
+        <div class="row content">
+            <div class="small-12 columns">
+                <?php
+            if(function_exists('bcn_display') && !is_front_page()) {
+                echo "<div class=\"breadcrumbs\">";
+                bcn_display();
+                echo "</div>";
+            }
+            ?>
             </div>
+            <?php get_sidebar(); ?>
+            <div class="small-12 medium-9 columns main">
+                <?php if(have_posts()) : while(have_posts()): the_post();?>
+                    <?php the_content();?>
+                <?php endwhile; else:?>
+                    <p><?php _e('Sorry, no posts yet');?></p>
+                <?php endif;?>
+            </div>
+        </div>
+    </div>
 <?php get_footer(); ?>