Add sample product and default message when you install thelia
This commit is contained in:
35
templates/default/includes/product-empty.html
Normal file
35
templates/default/includes/product-empty.html
Normal file
@@ -0,0 +1,35 @@
|
||||
<div class="jumbotron">
|
||||
<h1>{intl l="Product Empty Title"}</h1>
|
||||
<p>{intl l="Product Empty Message"}</p>
|
||||
<p><a href="{url path="/admin"}" class="btn btn-jumbotron btn-lg" role="button">{intl l="Product Empty Button"}</a></p>
|
||||
</div>
|
||||
|
||||
<section id="products-new">
|
||||
<div class="products-heading">
|
||||
<h2>{intl l="Latest"}</h2>
|
||||
</div>
|
||||
|
||||
<div class="products-content">
|
||||
<ul class="products-grid product-col-4">
|
||||
{for $count=1 to 4}
|
||||
<li class="item">
|
||||
<article>
|
||||
<a href="{url path="/admin"}" tabindex="-1" class="product-image">
|
||||
{images file='../assets/img/280x196.png'}<img src="{$asset_url}" alt="{intl l="Demo product title"}">{/images}
|
||||
<span class="mask"></span>
|
||||
</a>
|
||||
<a href="{url path="/admin"}" class="product-info">
|
||||
<h3 class="name">{intl l="Demo product title"}</h3>
|
||||
<div class="short-description">{intl l="Demo product description"}</div>
|
||||
<div class="product-price">
|
||||
<div class="price-container">
|
||||
<span class="regular-price"><span class="price">99.99 {currency attr="symbol"}</span></span>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</article><!-- /product -->
|
||||
</li>
|
||||
{/for}
|
||||
</ul>
|
||||
</div>
|
||||
</section><!-- #products-new -->
|
||||
Reference in New Issue
Block a user