| 1 |
<?php |
| 2 |
/** |
| 3 |
* <meta content="charset=UTF-8"> |
| 4 |
* @package Welcart |
| 5 |
* @subpackage Welcart Default Theme |
| 6 |
*/ |
| 7 |
get_header(); |
| 8 |
?> |
| 9 |
|
| 10 |
<div id="content" class="two-column"> |
| 11 |
|
| 12 |
<?php if (have_posts()) : while (have_posts()) : the_post(); ?> |
| 13 |
|
| 14 |
<h1 class="pagetitle"><?php the_title(); ?></h1> |
| 15 |
|
| 16 |
<div class="catbox"> |
| 17 |
<div <?php post_class() ?> id="post-<?php the_ID(); ?>"> |
| 18 |
<?php if(!usces_is_item()): ?> |
| 19 |
<?php the_date('','<span class="storydate">','</span>'); ?> |
| 20 |
<div class="storymeta"><?php _e("Filed under:"); ?> <?php the_category(',') ?> — <?php the_tags(__('Tags: '), ', ', ' — '); ?> <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(__('Edit This')); ?></div> |
| 21 |
<?php endif; ?> |
| 22 |
<div class="storycontent"> |
| 23 |
<?php the_content(__('(more...)')); ?> |
| 24 |
</div> |
| 25 |
|
| 26 |
<?php if(!usces_is_item()): ?> |
| 27 |
<div class="feedback"> |
| 28 |
<?php wp_link_pages(); ?> |
| 29 |
</div> |
| 30 |
|
| 31 |
<?php comments_template( '', true ); ?> |
| 32 |
|
| 33 |
<?php endif; ?> |
| 34 |
</div> |
| 35 |
</div><!-- end of catbox --> |
| 36 |
|
| 37 |
|
| 38 |
<?php endwhile; else: ?> |
| 39 |
<div class="catbox"> |
| 40 |
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p> |
| 41 |
</div><!-- end of catbox --> |
| 42 |
<?php endif; ?> |
| 43 |
|
| 44 |
<?php posts_nav_link(' — ', __('« Newer Posts'), __('Older Posts »')); ?> |
| 45 |
|
| 46 |
</div><!-- end of content --> |
| 47 |
|
| 48 |
<?php get_sidebar( 'other' ); ?> |
| 49 |
|
| 50 |
<?php get_footer(); ?> |
| 51 |
|