Local update, FNDPress culling, comments strip
authorLaury GvR <laury@gaslightmedia.com>
Thu, 23 Oct 2014 13:22:07 +0000 (09:22 -0400)
committerLaury GvR <laury@gaslightmedia.com>
Thu, 23 Oct 2014 13:22:07 +0000 (09:22 -0400)
A lot of foundationpress pages were simply bloat.
Some pages were outputting Comments or Reply and weren't meant to.

comments.php [deleted file]
hero.php [deleted file]
kitchen-sink.php [deleted file]
page-full.php [deleted file]
page-sidebar-left.php [deleted file]
page.php
search.php [deleted file]
searchform.php [deleted file]
sidebar-left.php [deleted file]
single.php [deleted file]

diff --git a/comments.php b/comments.php
deleted file mode 100644 (file)
index f8082ea..0000000
+++ /dev/null
@@ -1,94 +0,0 @@
-<?php function FoundationPress_comments($comment, $args, $depth) {
-    $GLOBALS['comment'] = $comment; ?>
-    <li <?php comment_class(); ?>>
-        <article id="comment-<?php comment_ID(); ?>">
-            <header class="comment-author">
-                <?php echo get_avatar($comment,$size='48'); ?>
-                <div class="author-meta">
-                    <?php printf(__('<cite class="fn">%s</cite>', 'FoundationPress'), get_comment_author_link()) ?>
-                    <time datetime="<?php echo comment_date('c') ?>"><a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ) ?>"><?php printf(__('%1$s', 'FoundationPress'), get_comment_date(),  get_comment_time()) ?></a></time>
-                    <?php edit_comment_link(__('(Edit)', 'FoundationPress'), '', '') ?>
-                </div>
-            </header>
-
-            <?php if ($comment->comment_approved == '0') : ?>
-                <div class="notice">
-                    <p class="bottom"><?php _e('Your comment is awaiting moderation.', 'FoundationPress') ?></p>
-                </div>
-            <?php endif; ?>
-
-            <section class="comment">
-                <?php comment_text() ?>
-                <?php comment_reply_link(array_merge( $args, array('depth' => $depth, 'max_depth' => $args['max_depth']))) ?>
-            </section>
-
-        </article>
-<?php } ?>
-
-<?php
-// Do not delete these lines
-    if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
-        die (__('Please do not load this page directly. Thanks!', 'FoundationPress'));
-
-    if ( post_password_required() ) { ?>
-    <section id="comments">
-        <div class="notice">
-            <p class="bottom"><?php _e('This post is password protected. Enter the password to view comments.', 'FoundationPress'); ?></p>
-        </div>
-    </section>
-    <?php
-        return;
-    }
-?>
-<?php // You can start editing here. Customize the respond form below ?>
-<?php if ( have_comments() ) : ?>
-    <section id="comments">
-        <h3><?php comments_number(__('No Responses to', 'FoundationPress'), __('One Response to', 'FoundationPress'), __('% Responses to', 'FoundationPress') ); ?> &#8220;<?php the_title(); ?>&#8221;</h3>
-        <ol class="commentlist">
-        <?php wp_list_comments('type=comment&callback=FoundationPress_comments'); ?>
-
-        </ol>
-        <footer>
-            <nav id="comments-nav">
-                <div class="comments-previous"><?php previous_comments_link( __( '&larr; Older comments', 'FoundationPress' ) ); ?></div>
-                <div class="comments-next"><?php next_comments_link( __( 'Newer comments &rarr;', 'FoundationPress' ) ); ?></div>
-            </nav>
-        </footer>
-    </section>
-<?php endif; ?>
-<?php if ( comments_open() ) : ?>
-<section id="respond">
-    <h3><?php comment_form_title( __('Leave a Reply', 'FoundationPress'), __('Leave a Reply to %s', 'FoundationPress') ); ?></h3>
-    <p class="cancel-comment-reply"><?php cancel_comment_reply_link(); ?></p>
-    <?php if ( get_option('comment_registration') && !is_user_logged_in() ) : ?>
-    <p><?php printf( __('You must be <a href="%s">logged in</a> to post a comment.', 'FoundationPress'), wp_login_url( get_permalink() ) ); ?></p>
-    <?php else : ?>
-    <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
-        <?php if ( is_user_logged_in() ) : ?>
-        <p><?php printf(__('Logged in as <a href="%s/wp-admin/profile.php">%s</a>.', 'FoundationPress'), get_option('siteurl'), $user_identity); ?> <a href="<?php echo wp_logout_url(get_permalink()); ?>" title="<?php __('Log out of this account', 'FoundationPress'); ?>"><?php _e('Log out &raquo;', 'FoundationPress'); ?></a></p>
-        <?php else : ?>
-        <p>
-            <label for="author"><?php _e('Name', 'FoundationPress'); if ($req) _e(' (required)', 'FoundationPress'); ?></label>
-            <input type="text" class="five" name="author" id="author" value="<?php echo esc_attr($comment_author); ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?>>
-        </p>
-        <p>
-            <label for="email"><?php _e('Email (will not be published)', 'FoundationPress'); if ($req) _e(' (required)', 'FoundationPress'); ?></label>
-            <input type="text" class="five" name="email" id="email" value="<?php echo esc_attr($comment_author_email); ?>" size="22" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?>>
-        </p>
-        <p>
-            <label for="url"><?php _e('Website', 'FoundationPress'); ?></label>
-            <input type="text" class="five" name="url" id="url" value="<?php echo esc_attr($comment_author_url); ?>" size="22" tabindex="3">
-        </p>
-        <?php endif; ?>
-        <p>
-            <label for="comment"><?php _e('Comment', 'FoundationPress'); ?></label>
-            <textarea name="comment" id="comment" tabindex="4"></textarea>
-        </p>
-        <p id="allowed_tags" class="small"><strong>XHTML:</strong> <?php _e('You can use these tags:','FoundationPress'); ?> <code><?php echo allowed_tags(); ?></code></p>
-        <p><input name="submit" class="button" type="submit" id="submit" tabindex="5" value="<?php esc_attr_e('Submit Comment', 'FoundationPress'); ?>"></p>
-        <?php comment_id_fields(); ?>
-        <?php do_action('comment_form', $post->ID); ?>
-    </form>
-    <?php endif; // If registration required and not logged in ?>
-</section>
-<?php endif; // if you delete this the sky will fall on your head ?>
diff --git a/hero.php b/hero.php
deleted file mode 100644 (file)
index 2a3dff6..0000000
--- a/hero.php
+++ /dev/null
@@ -1,55 +0,0 @@
-<?php
-/*
-Template Name: Hero
-*/
-get_header(); ?>
-
-<header id="homepage-hero" role="banner">
-    <div class="row">
-        <div class="small-12 medium-7 columns">
-            <h1><a href="<?php bloginfo('url'); ?>" title="<?php bloginfo('name'); ?>"><?php bloginfo('name'); ?></a></h1>
-            <h4 class="subheader"><?php bloginfo('description'); ?></h4>
-        </div>
-
-        <div class="medium-6 columns end">
-            <a role="button" class="download large button hide-for-small" href="https://github.com/olefredrik/foundationpress">Download FoundationPress</a>
-        </div>
-
-        <div class="floatingyeti show-for-medium-up">
-            <img data-cfsrc="http://foundation.zurb.com/assets/img/homepage/hero-image.svg" alt="Foundation Yeti" src="http://foundation.zurb.com/assets/img/homepage/hero-image.svg">
-        </div>
-    </div>
-
-</header>
-
-    <div class="row">
-        <div class="small-12 large-8 columns" role="main">
-
-        <?php do_action('foundationPress_before_content'); ?>
-
-        <?php while (have_posts()) : the_post(); ?>
-            <article <?php post_class() ?> id="post-<?php the_ID(); ?>">
-                <header>
-                    <h1 class="entry-title"><?php the_title(); ?></h1>
-                </header>
-                <?php do_action('foundationPress_page_before_entry_content'); ?>
-                <div class="entry-content">
-                    <?php the_content(); ?>
-                </div>
-                <footer>
-                    <?php wp_link_pages(array('before' => '<nav id="page-nav"><p>' . __('Pages:', 'FoundationPress'), 'after' => '</p></nav>' )); ?>
-                    <p><?php the_tags(); ?></p>
-                </footer>
-                <?php do_action('foundationPress_page_before_comments'); ?>
-                <?php comments_template(); ?>
-                <?php do_action('foundationPress_page_after_comments'); ?>
-            </article>
-        <?php endwhile;?>
-
-        <?php do_action('foundationPress_after_content'); ?>
-
-        </div>
-
-    <?php get_sidebar(); ?>
-</div>
-<?php get_footer(); ?>
diff --git a/kitchen-sink.php b/kitchen-sink.php
deleted file mode 100644 (file)
index 34f429e..0000000
+++ /dev/null
@@ -1,747 +0,0 @@
-<?php
-/*
-Template Name: Kitchen Sink
-*/
-get_header(); ?>
-<div class="row">
-    <div class="small-12 large-12 columns" role="main">
-
-    <?php /* Start loop */ ?>
-    <?php while (have_posts()) : the_post(); ?>
-        <article <?php post_class() ?> id="post-<?php the_ID(); ?>">
-            <header>
-                <h1 class="entry-title"><?php the_title(); ?></h1>
-            </header>
-            <div class="entry-content">
-                <?php the_content(); ?>
-            </div>
-
-            <h3 class="subheader">This page includes every single Foundation element so that we can make sure things work together smoothly.</h3>
-
-            <h4 id="alert-boxes">Alert Boxes</h4>
-            <div data-alert class="alert-box radius">
-                This is a standard alert (div.alert-box).
-                <a href="" class="close">&times;</a>
-            </div>
-
-            <div data-alert class="alert-box success">
-                This is a success alert (div.alert-box.success).
-                <a href="" class="close">&times;</a>
-            </div>
-
-            <div data-alert class="alert-box alert round">
-                This is an alert (div.alert-box.alert.round).
-                <a href="" class="close">&times;</a>
-            </div>
-
-            <div data-alert class="alert-box secondary">
-                This is a secondary alert (div.alert-box.secondary).
-                <a href="" class="close">&times;</a>
-            </div>
-
-            <hr>
-            <h4 id="block-grid">Block Grid</h4>
-            <ul class="small-block-grid-2 large-block-grid-4">
-                <li><img class="th" src="http://foundation.zurb.com/docs/assets/img/examples/comet-th.jpg" alt=""></li>
-                <li><img class="th" src="http://foundation.zurb.com/docs/assets/img/examples/launch-th.jpg" alt=""></li>
-                <li><img class="th" src="http://foundation.zurb.com/docs/assets/img/examples/space-th.jpg" alt=""></li>
-                <li><img class="th" src="http://foundation.zurb.com/docs/assets/img/examples/spacewalk-th.jpg" alt=""></li>
-            </ul>
-
-            <hr>
-            <h4 id="breadcrumbs">Breadcrumbs</h4>
-            <ul class="breadcrumbs">
-                <li><a href="#">Home</a></li>
-                <li><a href="#">Features</a></li>
-                <li class="unavailable"><a href="#">Gene Splicing</a></li>
-                <li class="current"><a href="#">Cloning</a></li>
-            </ul>
-
-            <hr>
-            <h4 id="buttons">Buttons</h4>
-            <div class="row">
-                <div class="small-6 large-6 columns">
-                    <a href="#" class="tiny button">.tiny.button</a><br>
-                    <a href="#" class="small button">.small.button</a><br>
-                    <a href="#" class="button">.button</a><br>
-                    <a href="#" class="button expand">.expand</a><br>
-                </div>
-                <div class="small-6 large-6 columns">
-                    <a href="#" class="tiny button secondary">.tiny.secondary</a><br>
-                    <a href="#" class="small button success radius">.small.success.radius</a><br>
-                    <a href="#" class="button alert round disabled">.round.disabled</a><br>
-                </div>
-            </div>
-
-            <hr>
-            <h4 id="button-groups">Button Groups</h4>
-            <ul class="button-group">
-                <li><a href="#" class="small button">Button 1</a></li>
-                <li><a href="#" class="small button">Button 2</a></li>
-                <li><a href="#" class="small button">Button 3</a></li>
-            </ul>
-            <ul class="button-group radius">
-                <li><a href="#" class="button secondary">Button 1</a></li>
-                <li><a href="#" class="button secondary">Button 2</a></li>
-                <li><a href="#" class="button secondary">Button 3</a></li>
-                <li><a href="#" class="button secondary">Button 4</a></li>
-            </ul>
-            <ul class="button-group round even-3">
-                <li><a href="#" class="button alert">Button 1</a></li>
-                <li><a href="#" class="button alert">Button 2</a></li>
-                <li><a href="#" class="button alert">Button 3</a></li>
-            </ul>
-            <ul class="button-group round even-3">
-                <li><input type="submit" class="button success" value="Button 1"></li>
-                <li><input type="submit" class="button success" value="Button 2"></li>
-                <li><input type="submit" class="button success" value="Button 3"></li>
-            </ul>
-
-            <hr>
-            <h4 id="dropdown-buttons">Dropdown Buttons</h4>
-            <ul id="drop" class="f-dropdown content" data-dropdown-content>
-                <li><a href="#">This is a link</a></li>
-                <li><a href="#">This is another</a></li>
-                <li><a href="#">Yet another</a></li>
-            </ul>
-
-            <a href="#" data-dropdown="drop" class="tiny button dropdown">Dropdown Button</a><br>
-            <a href="#" data-dropdown="drop" class="small secondary radius button dropdown">Dropdown Button</a><br>
-            <a href="#" data-dropdown="drop" class="button alert round dropdown">Dropdown Button</a><br>
-            <a href="#" data-dropdown="drop" class="large success button dropdown">Dropdown Button</a><br>
-            <a href="#" data-dropdown="drop" class="large button dropdown expand">Dropdown Button</a>
-
-            <hr>
-            <h4 id="split-buttons">Split Buttons</h4>
-            <p>
-                <a href="#" class="tiny button split">Split Button <span data-dropdown="drop"></span></a><br>
-                <a href="#" class="small secondary radius button split">Split Button <span data-dropdown="drop"></span></a><br>
-                <a href="#" class="button alert round split">Split Button <span data-dropdown="drop"></span></a><br>
-                <a href="#" class="large success button split">Split Button <span data-dropdown="drop"></span></a>
-            </p>
-
-            <hr>
-            <h4 id="clearing">Clearing</h4>
-            <div>
-                <ul class="clearing-thumbs" data-clearing>
-                    <li><a class="th" href="http://foundation.zurb.com/docs/assets/img/examples/comet.jpg"><img data-caption="Nulla vitae elit libero, a pharetra augue. Cras mattis consectetur purus sit amet fermentum." src="http://foundation.zurb.com/docs/assets/img/examples/comet-th-sm.jpg" alt=""></a></li>
-                    <li><a class="th" href="http://foundation.zurb.com/docs/assets/img/examples/earth.jpg"><img src="http://foundation.zurb.com/docs/assets/img/examples/earth-th-sm.jpg" alt=""></a></li>
-                    <li><a class="th" href="http://foundation.zurb.com/docs/assets/img/examples/launch.jpg"><img data-caption="Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Cras mattis consectetur purus sit amet fermentum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus." src="http://foundation.zurb.com/docs/assets/img/examples/launch-th-sm.jpg" alt=""></a></li>
-                    <li><a class="th" href="http://foundation.zurb.com/docs/assets/img/examples/satelite.jpg"><img src="http://foundation.zurb.com/docs/assets/img/examples/satelite-th-sm.jpg" alt=""></a></li>
-                    <li><a class="th" href="http://foundation.zurb.com/docs/assets/img/examples/space.jpg"><img data-caption="Integer posuere erat a ante venenatis dapibus posuere velit aliquet." src="http://foundation.zurb.com/docs/assets/img/examples/space-th-sm.jpg" alt=""></a></li>
-                </ul>
-            </div>
-
-            <hr>
-            <h4 id="forms">Forms</h4>
-            <form>
-                <fieldset>
-                    <legend>Fieldset</legend>
-
-                    <div class="row">
-                        <div class="large-12 columns">
-                            <label>Input Label</label>
-                            <input type="text" placeholder="large-12.columns">
-                        </div>
-                    </div>
-
-                    <div class="row">
-                        <div class="large-4 columns">
-                            <label>Input Label</label>
-                            <input type="text" placeholder="large-4.columns">
-                        </div>
-                        <div class="large-4 columns">
-                            <label>Input Label</label>
-                            <input type="text" placeholder="large-4.columns">
-                        </div>
-                        <div class="large-4 columns">
-                            <div class="row collapse">
-                                <label>Input Label</label>
-                                <div class="small-9 columns">
-                                    <input type="text" placeholder="small-9.columns">
-                                </div>
-                                <div class="small-3 columns">
-                                    <span class="postfix">.com</span>
-                                </div>
-                            </div>
-                        </div>
-                    </div>
-
-                    <div class="row">
-                        <div class="large-12 columns">
-                            <label>Textarea Label</label>
-                            <textarea placeholder="small-12.columns"></textarea>
-                        </div>
-                    </div>
-
-                </fieldset>
-            </form>
-
-            <hr>
-            <h4 id="dropdowns">Dropdowns</h4>
-            <a class="button" data-dropdown="tinyDrop" href="#">Link Dropdown &raquo;</a>
-            <a class="button" data-dropdown="contentDrop" href="#">Content Dropdown &raquo;</a>
-            <!-- Dropdowns -->
-            <ul class="f-dropdown" data-dropdown-content="" id="tinyDrop">
-                <li><a href="#">This is a link</a></li>
-                <li><a href="#">This is another</a></li>
-                <li><a href="#">Yet another</a></li>
-            </ul>
-
-            <div class="f-dropdown content medium" data-dropdown-content="" id= "contentDrop">
-                <h4>Title</h4>
-                <p>Some text that people will think is awesome! Some text that people will think is awesome! Some text that people will think is awesome!</p><img src="http://foundation.zurb.com/docs/assets/img/examples/launch.jpg" alt="">
-                <p>Launching a Discovery Mission</p><a class="button" href="#">Button</a>
-            </div>
-
-            <hr>
-            <h4 id="flex-video">Flex Video</h4>
-            <div class="flex-video">
-                <iframe width="420" height="315" src="http://www.youtube.com/embed/0_EW8aNgKlA" frameborder="0" allowfullscreen></iframe>
-            </div>
-
-            <hr>
-            <h4 id="inline-lists">Inline Lists</h4>
-            <ul class="inline-list">
-                <li><a href="#">Link 1</a></li>
-                <li><a href="#">Link 2</a></li>
-                <li><a href="#">Link 3</a></li>
-                <li><a href="#">Link 4</a></li>
-                <li><a href="#">Link 5</a></li>
-            </ul>
-
-            <hr>
-            <h4 id="joyride">Joyride</h4>
-            <div>
-                <a class="secondary button" id="start-jr">Start Joyride</a>
-
-                <h5 class="so-awesome" id="numero1">Build Joyride with HTML</h5>
-
-                <p class="so-awesome" id="numero2">Stop Number 2 for You!</p><!--stops-->
-
-                <ol class="joyride-list" data-joyride="">
-                    <li data-class="custom so-awesome" data-id="numero1" data-text="Next">
-                        <h4>Stop #1</h4>
-                        <p>You can control all the details for you tour stop. Any valid HTML will work inside of Joyride.</p>
-                    </li>
-                    <li data-button="Next" data-id="numero2">
-                        <h4>Stop #2</h4>
-                        <p>Get the details right by styling Joyride with a custom stylesheet!</p>
-                    </li>
-                    <li data-button="Next">
-                        <h4>Stop #3</h4>
-                        <p>It works as a modal too!</p>
-                    </li>
-                </ol>
-            </div>
-
-            <hr>
-            <h4 id="keystroke">Keystroke</h4>
-            <p>To make something pretty, press and hold <kbd>cmd + alt + shift + w + a + !</kbd></p>
-
-            <hr>
-            <h4 id="labels">Labels</h4>
-            <p>
-                <span class="label">Regular Label</span><br>
-                <span class="radius secondary label">Radius Secondary Label</span><br>
-                <span class="round alert label">Round Alert Label</span><br>
-                <span class="success label">Success Label</span><br>
-            </p>
-
-            <hr>
-            <h4 id="magellan">Magellan</h4>
-            <div data-magellan-expedition="fixed">
-                <dl class="sub-nav">
-                    <dd data-magellan-arrival="build"><a href="#build">Build with HTML</a></dd>
-                    <dd data-magellan-arrival="js"><a href="#js">Using Javascript</a></dd>
-                </dl>
-            </div>
-
-            <a name="build"></a>
-            <h5 data-magellan-destination="build">Build With Predefined HTML Structure</h5>
-            <p>Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Vestibulum id ligula porta felis euismod semper.</p>
-
-            <a name="js"></a>
-            <h5 data-magellan-destination="js">Awesome JS Goodness</h5>
-            <p>Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Vestibulum id ligula porta felis euismod semper.</p>
-
-            <hr>
-            <h4 id="orbit">Orbit</h4>
-            <div class="row">
-                <div class="large-12 columns">
-                    <ul id="featured1" data-orbit data-options="timer_speed:5000;">
-                        <li>
-                            <img src="http://foundation.zurb.com/docs/assets/img/examples/satelite-orbit.jpg" alt=""/>
-                            <div class="orbit-caption">
-                                Caption One. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.
-                            </div>
-                        </li>
-                        <li>
-                            <img src="http://foundation.zurb.com/docs/assets/img/examples/andromeda-orbit.jpg" alt=""/>
-                            <div class="orbit-caption">
-                                Caption Two. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.
-                            </div>
-                        </li>
-                        <li>
-                            <img src="http://foundation.zurb.com/docs/assets/img/examples/launch-orbit.jpg" alt=""/>
-                            <div class="orbit-caption">
-                                Caption Three. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.
-                            </div>
-                        </li>
-                    </ul>
-                </div>
-            </div>
-
-            <hr>
-            <h4 id="pagination">Pagination</h4>
-            <ul class="pagination">
-                <li class="arrow unavailable"><a href="">&laquo;</a></li>
-                <li class="current"><a href="">1</a></li>
-                <li><a href="">2</a></li>
-                <li><a href="">3</a></li>
-                <li><a href="">4</a></li>
-                <li class="unavailable"><a href="">&hellip;</a></li>
-                <li><a href="">12</a></li>
-                <li><a href="">13</a></li>
-                <li class="arrow"><a href="">&raquo;</a></li>
-            </ul>
-
-            <hr>
-            <h4 id="panels">Panels</h4>
-            <div class="row">
-                <div class="large-6 columns">
-                    <div class="panel">
-                        <h5>This is a regular panel.</h5>
-                        <p>It has an easy to override visual style, and is appropriately subdued.</p>
-                    </div>
-                </div>
-                <div class="large-6 columns">
-                    <div class="panel callout radius">
-                        <h5>This is a callout panel with radiused edges.</h5>
-                        <p>It&#39;s a little ostentatious, but useful for important content.</p>
-                    </div>
-                </div>
-            </div>
-
-            <h4 id="pricing-tables">Pricing Tables</h4>
-            <div class="row">
-                <div class="large-4 columns">
-                    <ul class="pricing-table">
-                        <li class="title">Standard</li>
-                        <li class="price">$99.99</li>
-                        <li class="description">An awesome description</li>
-                        <li class="bullet-item">1 Database</li>
-                        <li class="bullet-item">5GB Storage</li>
-                        <li class="bullet-item">20 Users</li>
-                        <li class="cta-button"><a class="button" href="#">Buy Now</a></li>
-                    </ul>
-                </div>
-            </div>
-
-            <hr>
-            <h4 id="progress-bars">Progress Bars</h4>
-            <div class="progress large-6"><span class="meter" style="width: 40%"></span></div>
-            <div class="radius progress success large-8"><span class="meter" style="width: 80%"></span></div>
-            <div class="nice round progress alert large-10"><span class="meter" style="width: 30%"></span></div>
-            <div class="nice secondary progress"><span class="meter" style="width: 50%"></span></div>
-
-            <hr>
-            <h4 id="reveal">Reveal</h4>
-            <a href="#" data-reveal-id="firstModal" class="radius button">Example Modal&hellip;</a>
-            <a href="#" data-reveal-id="videoModal" class="radius button">Example Modal w/Video&hellip;</a>
-            <!-- Reveal Modals begin -->
-            <div id="firstModal" class="reveal-modal" data-reveal>
-                <h2>This is a modal.</h2>
-                <p>Reveal makes these very easy to summon and dismiss. The close button is simply an anchor with a unicode character icon and a class of <code>close-reveal-modal</code>. Clicking anywhere outside the modal will also dismiss it.</p>
-                <p>Finally, if your modal summons another Reveal modal, the plugin will handle that for you gracefully.</p>
-                <a href="#" data-reveal-id="secondModal" class="secondary button">Second Modal...</a>
-                <a class="close-reveal-modal">&#215;</a>
-            </div>
-
-            <div id="secondModal" class="reveal-modal" data-reveal>
-                <h2>This is a second modal.</h2>
-                <p>See? It just slides into place after the other first modal. Very handy when you need subsequent dialogs, or when a modal option impacts or requires another decision.</p>
-                <a class="close-reveal-modal">&#215;</a>
-            </div>
-
-            <div id="videoModal" class="reveal-modal large" data-reveal>
-                <h2>This modal has video</h2>
-                <div class="flex-video">
-                        <iframe width="420" height="315" src="//www.youtube.com/embed/aiBt44rrslw" frameborder="0" allowfullscreen></iframe>
-                </div>
-                <a class="close-reveal-modal">&#215;</a>
-            </div>
-            <!-- Reveal Modals end -->
-
-            <hr>
-            <h4 id="sliders">Sliders</h4>
-            <div class="range-slider" data-slider>
-                <span class="range-slider-handle"></span>
-                <span class="range-slider-active-segment"></span>
-                <input type="hidden">
-            </div>
-            <div class="range-slider radius" data-slider>
-                <span class="range-slider-handle"></span>
-                <span class="range-slider-active-segment"></span>
-                <input type="hidden">
-            </div>
-            <div class="range-slider round" data-slider>
-                <span class="range-slider-handle"></span>
-                <span class="range-slider-active-segment"></span>
-                <input type="hidden">
-            </div>
-            <div class="range-slider" data-slider data-options="step: 20;">
-                <span class="range-slider-handle"></span>
-                <span class="range-slider-active-segment"></span>
-                <input type="hidden">
-            </div>
-
-            <hr>
-            <h4 id="accordion">Accordion</h4>
-            <dl class="accordion" data-accordion>
-                <dd>
-                    <a href="#panel1">Accordion 1</a>
-                    <div id="panel1" class="content active">
-                        <dl class="tabs" data-tab>
-                            <dd class="active"><a href="#panel1-1">Tab 1</a></dd>
-                            <dd><a href="#panel1-2">Tab 2</a></dd>
-                            <dd><a href="#panel1-3">Tab 3</a></dd>
-                            <dd><a href="#panel1-4">Tab 4</a></dd>
-                        </dl>
-                        <div class="tabs-content">
-                            <div class="content active" id="panel1-1">
-                                <p>First panel content goes here...</p>
-                            </div>
-                            <div class="content" id="panel1-2">
-                                <p>Second panel content goes here...</p>
-                            </div>
-                            <div class="content" id="panel1-3">
-                                <p>Third panel content goes here...</p>
-                            </div>
-                            <div class="content" id="panel1-4">
-                                <p>Fourth panel content goes here...</p>
-                            </div>
-                        </div>
-                    </div>
-                </dd>
-                <dd>
-                    <a href="#panel2">Accordion 2</a>
-                    <div id="panel2" class="content">
-                        Panel 2. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
-                    </div>
-                </dd>
-                <dd>
-                    <a href="#panel3">Accordion 3</a>
-                    <div id="panel3" class="content">
-                        Panel 3. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
-                    </div>
-                </dd>
-            </dl>
-
-            <hr>
-            <h4 id="tabs">Tabs</h4>
-            <dl class="tabs" data-tab>
-                <dd class="active"><a href="#panel2-1">Tab 1</a></dd>
-                <dd><a href="#panel2-2">Tab 2</a></dd>
-                <dd><a href="#panel2-3">Tab 3</a></dd>
-                <dd><a href="#panel2-4">Tab 4</a></dd>
-            </dl>
-            <div class="tabs-content">
-                <div class="content active" id="panel2-1">
-                    <p>First panel content goes here...</p>
-                </div>
-                <div class="content" id="panel2-2">
-                    <p>Second panel content goes here...</p>
-                </div>
-                <div class="content" id="panel2-3">
-                    <p>Third panel content goes here...</p>
-                </div>
-                <div class="content" id="panel2-4">
-                    <p>Fourth panel content goes here...</p>
-                </div>
-            </div>
-
-            <dl class="tabs vertical" data-tab="">
-                <dd class="active"><a href="#panel1a">Tab 1</a></dd>
-                <dd><a href="#panel2a">Tab 2</a></dd>
-                <dd><a href="#panel3a">Tab 3</a></dd>
-                <dd><a href="#panel4a">Tab 4</a></dd>
-            </dl>
-
-            <div class="tabs-content vertical">
-                <div class="content active" id="panel1a">
-                    <p>Panel 1 content goes here.</p>
-                </div>
-
-                <div class="content" id="panel2a">
-                    <p>Panel 2 content goes here.</p>
-                </div>
-
-                <div class="content" id="panel3a">
-                    <p>Panel 3 content goes here.</p>
-                </div>
-
-                <div class="content" id="panel4a">
-                    <p>Panel 4 content goes here.</p>
-                </div>
-            </div>
-
-            <hr>
-            <h4 id="side-nav">Side Nav</h4>
-            <div class="row">
-                <div class="large-4 columns end">
-                    <ul class="side-nav">
-                        <li class="active"><a href="#">Link 1</a></li>
-                        <li><a href="#">Link 2</a></li>
-                        <li class="divider"></li>
-                        <li><a href="#">Link 3</a></li>
-                        <li><a href="#">Link 4</a></li>
-                    </ul>
-                </div>
-            </div>
-
-            <hr>
-            <h4 id="sub-nav">Sub Nav</h4>
-            <dl class="sub-nav">
-                <dt>Filter:</dt>
-                <dd class="active"><a href="#">All</a></dd>
-                <dd><a href="#">Active</a></dd>
-                <dd><a href="#">Pending</a></dd>
-                <dd><a href="#">Suspended</a></dd>
-            </dl>
-
-            <hr>
-            <h4 id="tables">Tables</h4>
-            <table>
-                <thead>
-                    <tr>
-                        <th width="200">Table Header</th>
-                        <th>Table Header</th>
-                        <th width="150">Table Header</th>
-                        <th width="150">Table Header</th>
-                    </tr>
-                </thead>
-                <tbody>
-                    <tr>
-                        <td>Content Goes Here</td>
-                        <td>This is longer content Donec id elit non mi porta gravida at eget metus.</td>
-                        <td>Content Goes Here</td>
-                        <td>Content Goes Here</td>
-                    </tr>
-                    <tr>
-                        <td>Content Goes Here</td>
-                        <td>This is longer Content Goes Here Donec id elit non mi porta gravida at eget metus.</td>
-                        <td>Content Goes Here</td>
-                        <td>Content Goes Here</td>
-                    </tr>
-                    <tr>
-                        <td>Content Goes Here</td>
-                        <td>This is longer Content Goes Here Donec id elit non mi porta gravida at eget metus.</td>
-                        <td>Content Goes Here</td>
-                        <td>Content Goes Here</td>
-                    </tr>
-                </tbody>
-            </table>
-
-            <hr>
-            <h4 id="thumbnails">Thumbnails</h4>
-            <p><img class="th" src="http://foundation.zurb.com/docs/assets/img/examples/earth-th-sm.jpg" alt=""><img class="th" src="http://foundation.zurb.com/docs/assets/img/examples/space-th-sm.jpg" alt=""></p>
-
-            <hr>
-            <h4 id="tooltips">Tooltips</h4>
-            <p>The tooltips can be positioned on the <span data-tooltip class="has-tip" data-width="210" title="I'm on bottom and the default position.">&quot;tip-bottom&quot;</span>, which is the default position, <span data-tooltip class="has-tip tip-top noradius" data-width="210" title="I'm on the top and I'm not rounded!">&quot;tip-top&quot; (hehe)</span>, <span data-tooltip="left" class="has-tip tip-left" data-width="90" title="I'm on the left!">&quot;tip-left&quot;</span>, or <span data-tooltip="right" class="has-tip tip-right" data-width="120" title="I'm on the right!">&quot;tip-right&quot;</span> of the target element by adding the appropriate class to them. You can even add your own custom class to style each tip differently. On a small device, the tooltips are full width and bottom aligned.</p>
-
-            <hr>
-            <h4 id="top-bar">Top Bar</h4>
-             <nav class="top-bar" data-topbar>
-                <ul class="title-area">
-                    <!-- Title Area -->
-                    <li class="name">
-                        <h1>
-                            <a href="#">
-                                Top Bar Title
-                            </a>
-                        </h1>
-                    </li>
-                    <li class="toggle-topbar menu-icon"><a href="#"><span>menu</span></a></li>
-                </ul>
-
-                <section class="top-bar-section">
-                    <!-- Right Nav Section -->
-                    <ul class="right">
-                        <li class="divider"></li>
-                        <li class="has-dropdown">
-                            <a href="#">Main Item 1</a>
-                            <ul class="dropdown">
-                                <li><label>Section Name</label></li>
-                                <li class="has-dropdown">
-                                    <a href="#" class="">Has Dropdown, Level 1</a>
-                                    <ul class="dropdown">
-                                        <li><a href="#">Dropdown Options</a></li>
-                                        <li><a href="#">Dropdown Options</a></li>
-                                        <li><a href="#">Level 2</a></li>
-                                        <li><a href="#">Subdropdown Option</a></li>
-                                        <li><a href="#">Subdropdown Option</a></li>
-                                        <li><a href="#">Subdropdown Option</a></li>
-                                    </ul>
-                                </li>
-                                <li><a href="#">Dropdown Option</a></li>
-                                <li><a href="#">Dropdown Option</a></li>
-                                <li class="divider"></li>
-                                <li><label>Section Name</label></li>
-                                <li><a href="#">Dropdown Option</a></li>
-                                <li><a href="#">Dropdown Option</a></li>
-                                <li><a href="#">Dropdown Option</a></li>
-                                <li class="divider"></li>
-                                <li><a href="#">See all &rarr;</a></li>
-                            </ul>
-                        </li>
-                        <li class="divider"></li>
-                        <li class="has-dropdown">
-                            <a href="#">Main Item 2</a>
-                            <ul class="dropdown">
-                                <li><a href="#">Dropdown Option</a></li>
-                                <li><a href="#">Dropdown Option</a></li>
-                                <li><a href="#">Dropdown Option</a></li>
-                                <li class="divider"></li>
-                                <li><a href="#">See all &rarr;</a></li>
-                            </ul>
-                        </li>
-                    </ul>
-                </section>
-            </nav>
-
-            <hr>
-            <h4 id="icon-bar">Icon bar</h4>
-            <div class="icon-bar five-up" role="navigation">
-              <a class="item" role="button" tabindex="0" aria-label="home">
-                <i class="fi-home"></i>
-                <label id="home">Home</label>
-              </a>
-              <a class="item" role="button" tabindex="0" aria-label="Bookmark">
-                <i class="fi-bookmark"></i>
-                <label id="bookmark">Bookmark</label>
-              </a>
-              <a class="item" role="button" tabindex="0" aria-label="Information">
-                <i class="fi-info"></i>
-                <label id="information">Information</label>
-              </a>
-              <a class="item" role="button" tabindex="0" aria-label="Mail">
-                <i class="fi-mail"></i>
-                <label id="mail">Mail</label>
-              </a>
-              <a class="item" role="button" tabindex="0" aria-label="Like">
-                <i class="fi-like"></i>
-                <label id="like">Like</label>
-              </a>
-            </div>
-
-            <hr>
-            <h4 id="type">Type</h4>
-            <h1>h1. This is a very large header.</h1>
-            <h2>h2. This is a large header.</h2>
-            <h3>h3. This is a medium header.</h3>
-            <h4>h4. This is a moderate header.</h4>
-            <h5>h5. This is a small header.</h5>
-            <h6>h6. This is a tiny header.</h6>
-
-            <h1 class="subheader">h1.subheader</h1>
-            <h2 class="subheader">h2.subheader</h2>
-            <h3 class="subheader">h3.subheader</h3>
-            <h4 class="subheader">h4.subheader</h4>
-            <h5 class="subheader">h5.subheader</h5>
-            <h6 class="subheader">h6.subheader</h6>
-
-            <p><br></p>
-            <ul class="disc">
-                <li>List item with a much longer description or more content.</li>
-                <li>List item</li>
-                <li>List item
-                <ul>
-                    <li>Nested List Item</li>
-                    <li>Nested List Item</li>
-                    <li>Nested List Item</li>
-                </ul>
-                </li>
-                <li>List item</li>
-                <li>List item</li>
-                <li>List item</li>
-            </ul>
-
-            <h5>Ordered lists are great for lists that need order, duh.</h5>
-            <ol>
-                <li>List Item 1</li>
-                <li>List Item 2</li>
-                <li>List Item 3</li>
-            </ol>
-
-            <h5>Definition lists are great for small block of copy that describe the header</h5>
-            <dl>
-                <dt>Definition List</dt>
-                <dd>Definition Cras justo odio, dapibus ac facilisis in, egestas eget quam. Nullam id dolor id nibh ultricies vehicula ut id elit.</dd>
-            </dl>
-
-            <h5>Blockquote</h5>
-            <blockquote>I do not fear computers. I fear the lack of them. Maecenas faucibus mollis interdum. Aenean lacinia bibendum nulla sed consectetur.<cite>Isaac Asimov</cite></blockquote>
-
-            <h5>Vcard</h5>
-            <ul class="vcard">
-                <li class="fn">Gaius Baltar</li>
-                <li class="street-address">123 Colonial Ave.</li>
-                <li class="locality">Caprica City</li>
-                <li><span class="state">Caprica</span>, <span class="zip">12345</span></li>
-                <li class="email"><a href="#">g.baltar@example.com</a></li>
-            </ul>
-
-            <hr>
-            <h4 id="visibility-classes">Visibility Classes</h4>
-            <h5 id="screen-size-visibility-control-show-">Screen Size Visibility Control (Show)</h5>
-            <p>The following text should describe the screen size you&#39;re using:</p>
-            <p class="panel">
-                <strong class="show-for-small">You are on a small screen.</strong>
-                <strong class="show-for-medium">You are on a medium screen.</strong>
-                <strong class="show-for-medium-up">You are on a medium, large or xlarge screen.</strong>
-                <strong class="show-for-medium-down">You are on a medium or small screen.</strong>
-                <strong class="show-for-large">You are on a large screen.</strong>
-                <strong class="show-for-large-up">You are on a large or xlarge screen.</strong>
-                <strong class="show-for-large-down">You are on a large, medium or small screen.</strong>
-                <strong class="show-for-xlarge">You are on a xlarge screen.</strong>
-            </p>
-
-            <h5 id="screen-size-visibility-control-hide-">Screen Size Visibility Control (Hide)</h5>
-            <p>The following text should describe the screen size you aren&#39;t using:</p>
-            <p class="panel">
-                <strong class="hide-for-small">You are <em>not</em> on a small screen.</strong>
-                <strong class="hide-for-medium">You are <em>not</em> on a medium screen.</strong>
-                <strong class="hide-for-medium-up">You are <em>not</em> on a medium, large or xlarge screen.</strong>
-                <strong class="hide-for-medium-down">You are <em>not</em> on a medium or small screen.</strong>
-                <strong class="hide-for-large">You are <em>not</em> on a large screen.</strong>
-                <strong class="hide-for-large-up">You are <em>not</em> on a large or xlarge screen.</strong>
-                <strong class="hide-for-large-down">You are <em>not</em> on a large, medium or small screen.</strong>
-                <strong class="hide-for-xlarge">You are <em>not</em> on a xlarge screen.</strong>
-            </p>
-
-            <h5 id="orientation-detection">Orientation Detection</h5>
-            <p>The following text should describe the device orientation you&#39;re using:</p>
-            <p class="panel">
-                <strong class="show-for-landscape">You are in landscape orientation.</strong>
-                <strong class="show-for-portrait">You are in portrait orientation.</strong>
-            </p>
-
-            <h5 id="touch-detection">Touch Detection</h5>
-            <p>The following text should describe if you&#39;re using a touch device:</p>
-            <p class="panel">
-                <strong class="show-for-touch">You are on a touch-enabled device.</strong>
-                <strong class="hide-for-touch">You are not on a touch-enabled device.</strong>
-            </p>
-
-            <footer>
-                <?php wp_link_pages(array('before' => '<nav id="page-nav"><p>' . __('Pages:', 'FoundationPress'), 'after' => '</p></nav>' )); ?>
-                <p><?php the_tags(); ?></p>
-            </footer>
-            <?php comments_template(); ?>
-        </article>
-    <?php endwhile; // End the loop ?>
-    </div>
-</div>
-<?php get_footer(); ?>
diff --git a/page-full.php b/page-full.php
deleted file mode 100644 (file)
index 8fd5bca..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<?php
-/*
-Template Name: Full Width
-*/
-get_header(); ?>
-<div class="row">
-    <div class="small-12 large-12 columns" role="main">
-
-    <?php /* Start loop */ ?>
-    <?php while (have_posts()) : the_post(); ?>
-        <article <?php post_class() ?> id="post-<?php the_ID(); ?>">
-            <header>
-                <h1 class="entry-title"><?php the_title(); ?></h1>
-            </header>
-            <div class="entry-content">
-                <?php the_content(); ?>
-            </div>
-            <footer>
-                <?php wp_link_pages(array('before' => '<nav id="page-nav"><p>' . __('Pages:', 'FoundationPress'), 'after' => '</p></nav>' )); ?>
-                <p><?php the_tags(); ?></p>
-            </footer>
-            <?php comments_template(); ?>
-        </article>
-    <?php endwhile; // End the loop ?>
-
-    </div>
-</div>
-
-<?php get_footer(); ?>
diff --git a/page-sidebar-left.php b/page-sidebar-left.php
deleted file mode 100644 (file)
index 1b8814c..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-<?php
-/*
-Template Name: Left Sidebar
-*/
-get_header(); ?>
-<div class="row">
-    <div class="small-12 large-8 large-push-4 columns" role="main">
-
-        <?php do_action('foundationPress_before_content'); ?>
-
-        <?php while (have_posts()) : the_post(); ?>
-            <article <?php post_class() ?> id="post-<?php the_ID(); ?>">
-                <header>
-                    <h1 class="entry-title"><?php the_title(); ?></h1>
-                </header>
-                <?php do_action('foundationPress_page_before_entry_content'); ?>
-                <div class="entry-content">
-                    <?php the_content(); ?>
-                </div>
-                <footer>
-                    <?php wp_link_pages(array('before' => '<nav id="page-nav"><p>' . __('Pages:', 'FoundationPress'), 'after' => '</p></nav>' )); ?>
-                    <p><?php the_tags(); ?></p>
-                </footer>
-                <?php do_action('foundationPress_page_before_comments'); ?>
-                <?php comments_template(); ?>
-                <?php do_action('foundationPress_page_after_comments'); ?>
-            </article>
-        <?php endwhile;?>
-
-        <?php do_action('foundationPress_after_content'); ?>
-
-    </div>
-    <?php get_sidebar('left'); ?>
-</div>
-<?php get_footer(); ?>
index 3b52209..3190f7a 100644 (file)
--- a/page.php
+++ b/page.php
@@ -24,9 +24,6 @@
                 <?php wp_link_pages(array('before' => '<nav id="page-nav"><p>' . __('Pages:', 'FoundationPress'), 'after' => '</p></nav>' )); ?>
                 <p><?php the_tags(); ?></p>
             </footer>
-            <?php do_action('foundationPress_page_before_comments'); ?>
-            <?php comments_template(); ?>
-            <?php do_action('foundationPress_page_after_comments'); ?>
         </article>
     <?php endwhile;?>
 
diff --git a/search.php b/search.php
deleted file mode 100644 (file)
index 78fd6bd..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-<?php get_header(); ?>
-<div class="row">
-    <div class="small-12 large-8 columns" role="main">
-
-        <?php do_action('foundationPress_before_content'); ?>
-
-        <h2><?php _e('Search Results for', 'FoundationPress'); ?> "<?php echo get_search_query(); ?>"</h2>
-
-    <?php if ( have_posts() ) : ?>
-
-        <?php while ( have_posts() ) : the_post(); ?>
-            <?php get_template_part( 'content', get_post_format() ); ?>
-        <?php endwhile; ?>
-
-        <?php else : ?>
-            <?php get_template_part( 'content', 'none' ); ?>
-
-    <?php endif;?>
-
-    <?php do_action('foundationPress_before_pagination'); ?>
-
-    <?php if ( function_exists('FoundationPress_pagination') ) { FoundationPress_pagination(); } else if ( is_paged() ) { ?>
-
-        <nav id="post-nav">
-            <div class="post-previous"><?php next_posts_link( __( '&larr; Older posts', 'FoundationPress' ) ); ?></div>
-            <div class="post-next"><?php previous_posts_link( __( 'Newer posts &rarr;', 'FoundationPress' ) ); ?></div>
-        </nav>
-    <?php } ?>
-
-    <?php do_action('foundationPress_after_content'); ?>
-
-    </div>
-    <?php get_sidebar(); ?>
-
-<?php get_footer(); ?>
diff --git a/searchform.php b/searchform.php
deleted file mode 100644 (file)
index 908a8ce..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-<?php do_action('foundationPress_before_searchform'); ?>
-<form role="search" method="get" id="searchform" action="<?php echo home_url('/'); ?>">
-    <div class="row collapse">
-        <?php do_action('foundationPress_searchform_top'); ?>
-        <div class="small-8 columns">
-            <input type="text" value="" name="s" id="s" placeholder="<?php esc_attr_e('Search', 'FoundationPress'); ?>">
-        </div>
-        <?php do_action('foundationPress_searchform_before_search_button'); ?>
-        <div class="small-4 columns">
-            <input type="submit" id="searchsubmit" value="<?php esc_attr_e('Search', 'FoundationPress'); ?>" class="prefix button">
-        </div>
-        <?php do_action('foundationPress_searchform_after_search_button'); ?>
-    </div>
-</form>
-<?php do_action('foundationPress_after_searchform'); ?>
diff --git a/sidebar-left.php b/sidebar-left.php
deleted file mode 100644 (file)
index 3edd2e9..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-<aside id="sidebar" class="small-12 large-4 columns">
-    <?php do_action('foundationPress_before_sidebar'); ?>
-    <?php dynamic_sidebar("sidebar-widgets"); ?>
-    <?php do_action('foundationPress_after_sidebar'); ?>
-</aside>
diff --git a/single.php b/single.php
deleted file mode 100644 (file)
index 6b2f376..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-<?php get_header(); ?>
-<div class="row">
-    <div class="small-12 large-8 columns" role="main">
-
-    <?php do_action('foundationPress_before_content'); ?>
-
-    <?php while (have_posts()) : the_post(); ?>
-        <article <?php post_class() ?> id="post-<?php the_ID(); ?>">
-            <header>
-                <h1 class="entry-title"><?php the_title(); ?></h1>
-                <?php FoundationPress_entry_meta(); ?>
-            </header>
-            <?php do_action('foundationPress_post_before_entry_content'); ?>
-            <div class="entry-content">
-
-            <?php if ( has_post_thumbnail() ): ?>
-                <div class="row">
-                    <div class="column">
-                        <?php the_post_thumbnail('', array('class' => 'th')); ?>
-                    </div>
-                </div>
-            <?php endif; ?>
-
-            <?php the_content(); ?>
-            </div>
-            <footer>
-                <?php wp_link_pages(array('before' => '<nav id="page-nav"><p>' . __('Pages:', 'FoundationPress'), 'after' => '</p></nav>' )); ?>
-                <p><?php the_tags(); ?></p>
-            </footer>
-            <?php do_action('foundationPress_post_before_comments'); ?>
-            <?php comments_template(); ?>
-            <?php do_action('foundationPress_post_after_comments'); ?>
-        </article>
-    <?php endwhile;?>
-
-    <?php do_action('foundationPress_after_content'); ?>
-
-    </div>
-    <?php get_sidebar(); ?>
-</div>
-<?php get_footer(); ?>