mirror of
https://github.com/kennethreitz-archive/shopp.git
synced 2026-06-05 23:40:16 +00:00
64 lines
2.1 KiB
PHP
64 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
** WARNING! DO NOT EDIT!
|
|
**
|
|
** These templates are part of the core Shopp files
|
|
** and will be overwritten when upgrading Shopp.
|
|
**
|
|
** For editable templates, setup Shopp theme templates:
|
|
** http://docs.shopplugin.net/Setting_Up_Theme_Templates
|
|
**
|
|
**/
|
|
?>
|
|
<?php if(shopp('category','hasproducts','load=prices,images')): ?>
|
|
<div class="category">
|
|
<?php shopp('catalog','breadcrumb'); ?>
|
|
|
|
<h3><?php shopp('category','name'); ?></h3>
|
|
<?php shopp('catalog','views','label=Views: '); ?>
|
|
<br class="clear" />
|
|
<?php shopp('category','subcategory-list','hierarchy=true&showall=true&class=subcategories'); ?>
|
|
<?php shopp('catalog','orderby-list','dropdown=on'); ?>
|
|
<div class="alignright"><?php shopp('category','pagination'); ?></div>
|
|
<br class="clear" />
|
|
|
|
<ul class="products">
|
|
<li class="row"><ul>
|
|
<?php while(shopp('category','products')): ?>
|
|
<?php if(shopp('category','row')): ?></ul></li><li class="row"><ul><?php endif; ?>
|
|
<li class="product">
|
|
<div class="frame">
|
|
<a href="<?php shopp('product','url'); ?>"><?php shopp('product','thumbnail'); ?></a>
|
|
<div class="details">
|
|
<h4 class="name"><a href="<?php shopp('product','url'); ?>"><?php shopp('product','name'); ?></a></h4>
|
|
<p class="price"><?php shopp('product','saleprice','starting=from'); ?> </p>
|
|
<?php if (shopp('product','has-savings')): ?>
|
|
<p class="savings">Save <?php shopp('product','savings','show=percent'); ?></p>
|
|
<?php endif; ?>
|
|
|
|
<div class="listview">
|
|
<p><?php shopp('product','summary'); ?></p>
|
|
<form action="<?php shopp('cart','url'); ?>" method="post" class="shopp product">
|
|
<?php shopp('product','addtocart'); ?>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<br class="clear" />
|
|
|
|
</div>
|
|
</li>
|
|
<?php endwhile; ?>
|
|
</ul></li>
|
|
</ul>
|
|
<br class="clear" />
|
|
<div class="alignright"><?php shopp('category','pagination'); ?></div>
|
|
<br class="clear" />
|
|
</div>
|
|
<?php else: ?>
|
|
<?php if (!shopp('catalog','is-landing')): ?>
|
|
<?php shopp('catalog','breadcrumb'); ?>
|
|
<h3><?php shopp('category','name'); ?></h3>
|
|
<p>No products were found.</p>
|
|
<?php endif; ?>
|
|
<?php endif; ?>
|