PluginProbe
Welcart e-Commerce / 1.3.16
Welcart e-Commerce v1.3.16
2.12.4 2.12.3 2.11.35 2.12.2 2.12.1 2.11.34 2.11.33 2.11.32 2.11.31 2.11.30 1.3.16 1.3.17 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.10 1.4.11 1.4.12 All 292 releases
usc-e-shop / theme / welcart_default / index.php

index.php in Welcart e-Commerce 1.3.16, at theme/welcart_default/index.php

30 lines 984 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 <div class="catbox">
12 <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
13 <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
14 <h2 class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
15 <div class="meta"><?php _e("Filed under:"); ?> <?php the_category(',') ?> &#8212; <?php the_tags(__('Tags: '), ', ', ' &#8212; '); ?> <?php edit_post_link(__('Edit This')); ?></div>
16 <div class="storycontent">
17 <?php the_excerpt(); ?>
18 </div>
19 </div>
20 <?php endwhile; else: ?>
21 <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
22 <?php endif; ?>
23 <?php posts_nav_link(' &#8212; ', __('&laquo; Newer Posts'), __('Older Posts &raquo;')); ?>
24 </div><!-- end of catbox -->
25 </div><!-- end of content -->
26
27 <?php get_sidebar( 'other' ); ?>
28
29 <?php get_footer(); ?>
30