| 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 |
<?php if (have_posts()) : while (have_posts()) : the_post(); ?> |
| 12 |
<h1 class="pagetitle"><?php the_title(); ?></h1> |
| 13 |
<div class="catbox"> |
| 14 |
<div class="post" id="<?php echo $post->post_name; ?>"> |
| 15 |
<div class="entry"> |
| 16 |
<?php the_content(); ?> |
| 17 |
<?php wp_link_pages(array('before' => '<p><strong>' . __('Pages:', 'uscestheme') . '</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?> |
| 18 |
</div> |
| 19 |
</div> |
| 20 |
</div><!-- end of catbox --> |
| 21 |
<?php endwhile; endif; ?> |
| 22 |
<?php edit_post_link(__('Edit this entry.', 'uscestheme'), '<p>', '</p>'); ?> |
| 23 |
</div><!-- end of content --> |
| 24 |
|
| 25 |
<?php |
| 26 |
if(is_page('usces-cart')): |
| 27 |
get_sidebar( 'cartmember' ); |
| 28 |
else: |
| 29 |
get_sidebar( 'other' ); |
| 30 |
endif; |
| 31 |
?> |
| 32 |
|
| 33 |
<?php get_footer(); ?> |
| 34 |
|