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,8 @@
<?php
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,37 @@
{extends file='catalog/listing/category.tpl'}
{block name='product_list_header'}
{if !empty($as_search.keep_category_information) && isset($category) && isset($subcategories)}
{$smarty.block.parent}
{else}
{if $as_seo_description}
<div class="block-category card card-block hidden-sm-down">
<h1 class="h1">{$as_seo_title}</h1>
{if $as_seo_description}
<div id="category-description" class="text-muted">{$as_seo_description nofilter}</div>
{/if}
</div>
<div class="text-xs-center hidden-md-up">
<h1 class="h1">{$as_seo_title}</h1>
</div>
{else}
<h2 class="h2">{$as_seo_title}</h2>
{/if}
{/if}
{/block}
{block name='product_list_active_filters'}
{if !empty($as_search.remind_selection) && ($as_search.remind_selection == 3 || $as_search.remind_selection == 1)}
<div id="js-active-search-filters" class="hidden-sm-down">
{$listing.rendered_active_filters nofilter}
</div>
{/if}
{/block}
{block name='content'}
<div id="PM_ASearchResults" data-id-search="{$id_search|intval}">
<div id="PM_ASearchResultsInner" class="PM_ASearchResultsInner_{$id_search|intval}">
{$smarty.block.parent}
</div>
</div>
{/block}

View File

@@ -0,0 +1,43 @@
{extends file='catalog/listing/category.tpl'}
{block name='product_list_header'}
{if $as_seo_description}
<div class="block-category card card-block hidden-sm-down">
<h1 class="h1">{$as_seo_title}</h1>
{if $as_seo_description}
<div id="category-description" class="text-muted">{$as_seo_description nofilter}</div>
{/if}
</div>
<div class="text-xs-center hidden-md-up">
<h1 class="h1">{$as_seo_title}</h1>
</div>
{else}
<h2 class="h2">{$listing.label}</h2>
{/if}
{/block}
{block name='product_list_active_filters'}
<div id="js-active-search-filters" class="hidden-sm-down">
{$listing.rendered_active_filters nofilter}
</div>
{/block}
{block name='content'}
<div id="PM_ASearchResults" data-id-search="{$id_search|intval}">
<div id="PM_ASearchResultsInner" class="PM_ASearchResultsInner_{$id_search|intval}">
{$smarty.block.parent}
{if isset($as_cross_links) && $as_cross_links && sizeof($as_cross_links)}
<div id="PM_ASearchSeoCrossLinks" class="card-block">
<h4 class="h4">{$as_see_also_txt}</h4>
<ul class="bullet">
{foreach from=$as_cross_links item=as_cross_link}
<li>
<a href="{$as_cross_link.public_url nofilter}">{$as_cross_link.title}</a>
</li>
{/foreach}
</ul>
</div>
{/if}
</div>
</div>
{/block}