File: /home/c1190199/public_html/wp-content/themes/Nova/page-blog.php
<?php
/*
Template Name: Blog Page
*/
?>
<?php the_post(); ?>
<?php
$et_ptemplate_settings = array();
$et_ptemplate_settings = maybe_unserialize( get_post_meta($post->ID,'et_ptemplate_settings',true) );
$fullwidth = isset( $et_ptemplate_settings['et_fullwidthpage'] ) ? (bool) $et_ptemplate_settings['et_fullwidthpage'] : (bool) $et_ptemplate_settings['et_fullwidthpage'];
$et_ptemplate_blogstyle = isset( $et_ptemplate_settings['et_ptemplate_blogstyle'] ) ? (bool) $et_ptemplate_settings['et_ptemplate_blogstyle'] : (bool) $et_ptemplate_settings['et_ptemplate_blogstyle'];
$et_ptemplate_showthumb = isset( $et_ptemplate_settings['et_ptemplate_showthumb'] ) ? (bool) $et_ptemplate_settings['et_ptemplate_showthumb'] : (bool) $et_ptemplate_settings['et_ptemplate_showthumb'];
$blog_cats = isset( $et_ptemplate_settings['et_ptemplate_blogcats'] ) ? $et_ptemplate_settings['et_ptemplate_blogcats'] : array();
$et_ptemplate_blog_perpage = isset( $et_ptemplate_settings['et_ptemplate_blog_perpage'] ) ? $et_ptemplate_settings['et_ptemplate_blog_perpage'] : 10;
?>
<?php get_header(); ?>
<div id="main-content"<?php if ($fullwidth) echo ' class="fullwidth"'; ?>>
<div class="container clearfix">
<div id="entries-area">
<div id="entries-area-inner">
<div id="entries-area-content" class="clearfix">
<div id="content-area">
<?php include(TEMPLATEPATH . '/includes/breadcrumbs.php'); ?>
<div class="entry post clearfix">
<h1 class="title"><?php the_title(); ?></h1>
<?php include(TEMPLATEPATH . '/includes/postinfo.php'); ?>
<?php if (get_option('nova_page_thumbnails') == 'on') { ?>
<?php
$thumb = '';
$width = 160;
$height = 160;
$classtext = '';
$titletext = get_the_title();
$thumbnail = get_thumbnail($width,$height,$classtext,$titletext,$titletext,false,'Portfolio');
$thumb = $thumbnail["thumb"];
?>
<?php if($thumb <> '') { ?>
<div class="thumbnail">
<a href="<?php the_permalink(); ?>">
<?php print_thumbnail($thumb, $thumbnail["use_timthumb"], $titletext, $width, $height, $classtext); ?>
<span class="overlay2"></span>
</a>
</div> <!-- .thumbnail -->
<?php } ?>
<?php } ?>
<?php the_content(); ?>
<?php wp_link_pages(array('before' => '<p><strong>'.__('Pages','Nova').':</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
<div id="et_pt_blog">
<?php $cat_query = '';
if ( !empty($blog_cats) ) $cat_query = '&cat=' . implode(",", $blog_cats);
else echo '<!-- blog category is not selected -->'; ?>
<?php query_posts("showposts=$et_ptemplate_blog_perpage&paged=$paged" . $cat_query); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="et_pt_blogentry clearfix">
<h2 class="et_pt_title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<p class="et_pt_blogmeta"><?php _e('Posted','Nova'); ?> <?php _e('by','Nova'); ?> <?php the_author_posts_link(); ?> <?php _e('on','Nova'); ?> <?php the_time(get_option('nova_date_format')) ?> <?php _e('in','Nova'); ?> <?php the_category(', ') ?> | <?php comments_popup_link(__('0 comments','Nova'), __('1 comment','Nova'), '% '.__('comments','Nova')); ?></p>
<?php $thumb = '';
$width = 184;
$height = 184;
$classtext = '';
$titletext = get_the_title();
$thumbnail = get_thumbnail($width,$height,$classtext,$titletext,$titletext);
$thumb = $thumbnail["thumb"]; ?>
<?php if ( $thumb <> '' && !$et_ptemplate_showthumb ) { ?>
<div class="et_pt_thumb alignleft">
<?php print_thumbnail($thumb, $thumbnail["use_timthumb"], $titletext, $width, $height, $classtext); ?>
<a href="<?php the_permalink(); ?>"><span class="overlay"></span></a>
</div> <!-- end .thumb -->
<?php }; ?>
<?php if (!$et_ptemplate_blogstyle) { ?>
<p><?php truncate_post(550);?></p>
<a href="<?php the_permalink(); ?>" class="readmore"><span><?php _e('read more','Nova'); ?></span></a>
<?php } else { ?>
<?php the_content(''); ?>
<?php } ?>
</div> <!-- end .et_pt_blogentry -->
<?php endwhile; ?>
<div class="page-nav clearfix">
<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); }
else { ?>
<?php include(TEMPLATEPATH . '/includes/navigation.php'); ?>
<?php } ?>
</div> <!-- end .entry -->
<?php else : ?>
<?php include(TEMPLATEPATH . '/includes/no-results.php'); ?>
<?php endif; wp_reset_query(); ?>
</div> <!-- end #et_pt_blog -->
<?php edit_post_link(__('Edit this page','Nova')); ?>
</div> <!-- end .entry -->
</div> <!-- end #content-area -->
<?php if (!$fullwidth) get_sidebar(); ?>
</div> <!-- end #entries-area-content -->
</div> <!-- end #entries-area-inner -->
</div> <!-- end #entries-area -->
</div> <!-- end .container -->
</div> <!-- end #main-content -->
<?php get_footer(); ?>