--- /dev/null
+<?php get_header(); ?>
+ <div class="main">
+ <?php get_template_part('parts/testimonial');?>
+ <div id="content-wrapper">
+ <div class="row">
+ </div>
+ <div class="row">
+ <div id="main-content" class="small-11 small-centered columns">
+ <?php $pageData = get_post(27);?>
+ <?php echo apply_filters('the_content', $pageData->post_content);?>
+ <?php if(have_posts()) : while(have_posts()): the_post();?>
+ <h2><?php the_title();?></h2>
+ <?php the_content();?>
+ <hr>
+ <?php endwhile;?>
+ <div class="navigation">
+ <span class="newer"><?php previous_posts_link(__('« Newer','example')) ?></span> <span class="older"><?php next_posts_link(__('Older »','example')) ?></span>
+ </div><!-- /.navigation -->
+ <?php else:?>
+ <p><?php _e('Sorry, no posts yet');?></p>
+ <?php endif;?>
+ </div>
+ </div>
+ </div>
+<?php get_footer(); ?>
\ No newline at end of file
--- /dev/null
+<div id="testimonials" class="row">
+ <div class="small-12 columns overlay">
+ <?php if (is_active_sidebar('sidebar-f')) :?>
+ <?php dynamic_sidebar('sidebar-f');?>
+ <?php endif;?>
+ </div>
+</div>
--- /dev/null
+<?php get_header(); ?>
+ <div class="main">
+ <?php get_template_part('parts/testimonial');?>
+ <div id="content-wrapper">
+ <div class="row">
+ </div>
+ <div class="row">
+ <div id="main-content" class="small-11 small-centered 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>
+<?php get_footer(); ?>
\ No newline at end of file