File: /virtual/nagasaki/public_html/shop/wp-content/themes/welcart_default/index.php
<?php
/**
* <meta content="charset=UTF-8">
* @package Welcart
* @subpackage Welcart Default Theme
*/
get_header();
?>
<div id="content" class="two-column">
<div class="catbox">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h2 class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<div class="meta"><?php _e("Filed under:"); ?> <?php the_category(',') ?> — <?php the_tags(__('Tags: '), ', ', ' — '); ?> <?php edit_post_link(__('Edit This')); ?></div>
<div class="storycontent">
<?php the_excerpt(); ?>
</div>
</div>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
<?php posts_nav_link(' — ', __('« Newer Posts'), __('Older Posts »')); ?>
</div><!-- end of catbox -->
</div><!-- end of content -->
<?php get_sidebar( 'other' ); ?>
<?php get_footer(); ?>