Created
January 31, 2013 05:59
-
-
Save webbystation/4680645 to your computer and use it in GitHub Desktop.
This file contains 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 | |
// Exit if accessed directly | |
if ( !defined('ABSPATH')) exit; | |
/** | |
* Blog Template | |
* | |
Template Name: Blog Excerpt (summary) | |
* | |
* @file blog-excerpt.php | |
* @package Responsive | |
* @author Emil Uzelac | |
* @copyright 2003 - 2013 ThemeID | |
* @license license.txt | |
* @version Release: 1.1.0 | |
* @filesource wp-content/themes/responsive/blog-excerpt.php | |
* @link http://codex.wordpress.org/Templates | |
* @since available since Release 1.0 | |
*/ | |
?> | |
<?php get_header(); ?> | |
<div id="content-blog" class="grid col-620"> | |
<?php $options = get_option('responsive_theme_options'); ?> | |
<?php if ($options['breadcrumb'] == 0): ?> | |
<?php echo responsive_breadcrumb_lists(); ?> | |
<?php endif; ?> | |
<?php | |
if ( get_query_var('paged') ) | |
$paged = get_query_var('paged'); | |
elseif ( get_query_var('page') ) | |
$paged = get_query_var('page'); | |
else | |
$paged = 1; | |
query_posts("post_type=post&paged=$paged"); | |
?> | |
<?php if (have_posts()) : ?> | |
<?php while (have_posts()) : the_post(); ?> | |
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> | |
<h1 class="post-title"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'responsive'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h1> | |
<?php if( function_exists('webination_sharing') ) webination_sharing(get_the_ID()); ?> | |
<div class="post-meta"> | |
<?php responsive_post_meta_data(); ?> | |
<?php if ( comments_open() ) : ?> | |
<span class="comments-link"> | |
<span class="mdash">—</span> | |
<?php comments_popup_link(__('No Comments ↓', 'responsive'), __('1 Comment ↓', 'responsive'), __('% Comments ↓', 'responsive')); ?> | |
</span> | |
<?php endif; ?> | |
</div><!-- end of .post-meta --> | |
<div class="post-entry"> | |
<?php if ( has_post_thumbnail()) : ?> | |
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" > | |
<?php the_post_thumbnail(); ?> | |
</a> | |
<?php endif; ?> | |
<?php the_excerpt(); ?> | |
<?php wp_link_pages(array('before' => '<div class="pagination">' . __('Pages:', 'responsive'), 'after' => '</div>')); ?> | |
</div><!-- end of .post-entry --> | |
<div class="post-data"> | |
<?php the_tags(__('Tagged with:', 'responsive') . ' ', ', ', '<br />'); ?> | |
<?php printf(__('Posted in %s', 'responsive'), get_the_category_list(', ')); ?> | |
</div><!-- end of .post-data --> | |
<div class="post-edit"><?php edit_post_link(__('Edit', 'responsive')); ?></div> | |
</div><!-- end of #post-<?php the_ID(); ?> --> | |
<?php endwhile; ?> | |
<?php if ( $wp_query->max_num_pages > 1 ) : ?> | |
<div class="navigation"> | |
<div class="previous"><?php next_posts_link( __( '‹ Older posts', 'responsive' ) ); ?></div> | |
<div class="next"><?php previous_posts_link( __( 'Newer posts ›', 'responsive' ) ); ?></div> | |
</div><!-- end of .navigation --> | |
<?php endif; ?> | |
<?php else : ?> | |
<h1 class="title-404"><?php _e('404 — Fancy meeting you here!', 'responsive'); ?></h1> | |
<p><?php _e('Don't panic, we'll get through this together. Let's explore our options here.', 'responsive'); ?></p> | |
<h6><?php printf( __('You can return %s or search for the page you were looking for.', 'responsive'), | |
sprintf( '<a href="%1$s" title="%2$s">%3$s</a>', | |
esc_url( get_home_url() ), | |
esc_attr__('Home', 'responsive'), | |
esc_attr__('← Home', 'responsive') | |
)); | |
?></h6> | |
<?php get_search_form(); ?> | |
<?php endif; ?> | |
</div><!-- end of #content-blog --> | |
<?php get_sidebar(); ?> | |
<?php get_footer(); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment