first commit

This commit is contained in:
2025-01-06 20:47:25 +01:00
commit 3bdbd78c2f
25591 changed files with 3586440 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
<span class="product-quantity">{$product.quantity}</span>
<span class="product-name">{$product.name}</span>
<span class="product-price">{$product.price}</span>
<a class="remove-from-cart"
rel="nofollow"
href="{$product.remove_from_cart_url}"
data-link-action="remove-from-cart"
>
{l s="Remove" d="Shop.Theme.Actions"}
</a>
{if $product.customizations|count}
<div class="customizations">
<ul>
{foreach from=$product.customizations item="customization"}
<li>
<span class="product-quantity">{$customization.quantity}</span>
<a href="{$customization.remove_from_cart_url}" class="remove-from-cart" rel="nofollow">{l s='Remove' d="Shop.Theme.Actions"}</a>
<ul>
{foreach from=$customization.fields item="field"}
<li>
<label>{$field.label}</label>
{if $field.type == 'text'}
<span>{$field.text}</span>
{elseif $field.type == 'image'}
<img src="{$field.image.small.url}">
{/if}
</li>
{/foreach}
</ul>
</li>
{/foreach}
</ul>
</div>
{/if}