Add home text
authorSteve Sutton <steve@gaslightmedia.com>
Tue, 8 Nov 2016 18:44:36 +0000 (13:44 -0500)
committerSteve Sutton <steve@gaslightmedia.com>
Tue, 8 Nov 2016 18:44:36 +0000 (13:44 -0500)
Add page output from wordpress in front page.

front-page.php
style.css

index da29e3e..fc5c1d3 100644 (file)
@@ -3,6 +3,15 @@
 <main>
     <div class="row" data-equalizer data-options="equalize_on_stack: false">
         <div id="front" class="small-12 medium-7 large-8 columns" data-equalizer-watch>
+            <?php if(have_posts()) : while(have_posts()): the_post();?>
+            <div class="row">
+                <div class="small-12 columns">
+                    <?php the_content();?>
+                </div>
+            </div>
+            <?php endwhile; else:?>
+            <p><?php _e('Sorry, no posts yet');?></p>
+            <?php endif;?>
             <?php get_template_part('parts/blog-feed-home');?>
             <div class="row collapse">
                 <div class="row blocks">
index 5f1d099..94758b8 100644 (file)
--- a/style.css
+++ b/style.css
@@ -3,5 +3,5 @@ Theme Name: EmmetCountyGovernment
 Author: Gaslight Media
 Author URI: http://www.gaslightmedia.com
 Description: A theme for EmmetCountyGovernment
-Version: 1.2.8
+Version: 1.2.14
 */