Created
July 16, 2014 21:13
-
-
Save solepixel/6f3a6cbd577fa7f28f8c 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 get_header(); ?> | |
<div id="content" class="clearfix row"> | |
<div id="main" class="col-sm-8 clearfix" role="main"> | |
<div class="page-header"> | |
<?php if (is_category()) { ?> | |
<h1 class="archive_title h2"> | |
<span><?php _e("Posts Categorized:", "wpbootstrap"); ?></span> <?php single_cat_title(); ?> | |
</h1> | |
<?php } elseif (is_tag()) { ?> | |
<h1 class="archive_title h2"> | |
<span><?php _e("Posts Tagged:", "wpbootstrap"); ?></span> <?php single_tag_title(); ?> | |
</h1> | |
<?php } elseif (is_author()) { ?> | |
<h1 class="archive_title h2"> | |
<span><?php _e("Posts By:", "wpbootstrap"); ?></span> <?php get_the_author_meta('display_name'); ?> | |
</h1> | |
<?php } elseif (is_day()) { ?> | |
<h1 class="archive_title h2"> | |
<span><?php _e("Daily Archives:", "wpbootstrap"); ?></span> <?php the_time('l, F j, Y'); ?> | |
</h1> | |
<?php } elseif (is_month()) { ?> | |
<h1 class="archive_title h2"> | |
<span><?php _e("Monthly Archives:", "wpbootstrap"); ?>:</span> <?php the_time('F Y'); ?> | |
</h1> | |
<?php } elseif (is_year()) { ?> | |
<h1 class="archive_title h2"> | |
<span><?php _e("Yearly Archives:", "wpbootstrap"); ?>:</span> <?php the_time('Y'); ?> | |
</h1> | |
<?php } ?> | |
</div> | |
<?php $first_post = true; ?> | |
<?php if (have_posts()) : while (have_posts()) : the_post(); ?> | |
<?php if( $first_post ): $first_post = false; ?> | |
<!-- You can customize this version to your liking! --> | |
<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?> role="article"> | |
<header> | |
<h3 class="h2"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3> | |
<p class="meta"><?php _e("Posted", "wpbootstrap"); ?> <time datetime="<?php echo the_time('Y-m-j'); ?>" pubdate><?php the_time(); ?></time> <?php _e("by", "wpbootstrap"); ?> <?php the_author_posts_link(); ?> <span class="amp">&</span> <?php _e("filed under", "wpbootstrap"); ?> <?php the_category(', '); ?>.</p> | |
</header> <!-- end article header --> | |
<section class="post_content"> | |
<?php the_post_thumbnail( 'wpbs-featured' ); ?> | |
<?php the_excerpt(); ?> | |
</section> <!-- end article section --> | |
<footer> | |
</footer> <!-- end article footer --> | |
</article> <!-- end article --> | |
<?php else : ?> | |
<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?> role="article"> | |
<header> | |
<h3 class="h2"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3> | |
<p class="meta"><?php _e("Posted", "wpbootstrap"); ?> <time datetime="<?php echo the_time('Y-m-j'); ?>" pubdate><?php the_time(); ?></time> <?php _e("by", "wpbootstrap"); ?> <?php the_author_posts_link(); ?> <span class="amp">&</span> <?php _e("filed under", "wpbootstrap"); ?> <?php the_category(', '); ?>.</p> | |
</header> <!-- end article header --> | |
<section class="post_content"> | |
<?php the_post_thumbnail( 'wpbs-featured' ); ?> | |
<?php the_excerpt(); ?> | |
</section> <!-- end article section --> | |
<footer> | |
</footer> <!-- end article footer --> | |
</article> <!-- end article --> | |
<?php endif; ?> | |
<?php endwhile; ?> | |
<?php if (function_exists('page_navi')) { // if expirimental feature is active ?> | |
<?php page_navi(); // use the page navi function ?> | |
<?php } else { // if it is disabled, display regular wp prev & next links ?> | |
<nav class="wp-prev-next"> | |
<ul class="pager"> | |
<li class="previous"><?php next_posts_link(_e('« Older Entries', "wpbootstrap")) ?></li> | |
<li class="next"><?php previous_posts_link(_e('Newer Entries »', "wpbootstrap")) ?></li> | |
</ul> | |
</nav> | |
<?php } ?> | |
<?php else : ?> | |
<article id="post-not-found"> | |
<header> | |
<h1><?php _e("No Posts Yet", "wpbootstrap"); ?></h1> | |
</header> | |
<section class="post_content"> | |
<p><?php _e("Sorry, What you were looking for is not here.", "wpbootstrap"); ?></p> | |
</section> | |
<footer> | |
</footer> | |
</article> | |
<?php endif; ?> | |
</div> <!-- end #main --> | |
<?php get_sidebar(); // sidebar 1 ?> | |
</div> <!-- end #content --> | |
<?php get_footer(); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment