Subida del módulo y tema de PrestaShop

This commit is contained in:
Kaloyan
2026-04-09 18:31:51 +02:00
parent 12c253296f
commit 16b3ff9424
39262 changed files with 7418797 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
{**
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*}
{extends file='page.tpl'}
{block name='breadcrumb'}{/block}
{block name='container_class'}container container--limited-md text-center{/block}
{block name='page_header_container'}
{block name='page_title'}
<div class="page-header mb-2">
<p class="display-1 fw-bold">{l s='404' d='Shop.Theme.Catalog'}</p>
</div>
{/block}
{/block}
{capture assign="errorContent"}
<h1 class="h2">{$page.title}</h1>
<p>
{l
s='If this is a recurring problem, please [1]contact us[/1].'
d='Shop.Theme.Catalog'
sprintf=[
'[1]' => '<a href="'|cat:{$urls.pages.contact|escape:'htmlall'}|cat:'">',
'[/1]' => '</a>'
]
}
</p>
{/capture}
{block name='page_content_container'}
{include file='errors/not-found.tpl' errorContent=$errorContent}
{/block}

View File

@@ -0,0 +1,35 @@
{**
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*}
{extends file='page.tpl'}
{block name='breadcrumb'}{/block}
{block name='container_class'}container container--limited-md text-center{/block}
{block name='page_header_container'}
{block name='page_title'}
<div class="page-header mb-2">
<h1 class="display-1">{$page.title}</h1>
</div>
{/block}
{/block}
{capture assign="errorContent"}
<h1 class="h4">{$page.title}</h1>
<p>
{l
s='If this is a recurring problem, please [1]contact us[/1].'
d='Shop.Theme.Catalog'
sprintf=[
'[1]' => '<a href="'|cat:{$urls.pages.contact|escape:'htmlall'}|cat:'">',
'[/1]' => '</a>'
]
}
</p>
{/capture}
{block name='page_content_container'}
{include file='errors/not-found.tpl' errorContent=$errorContent}
{/block}

View File

@@ -0,0 +1,8 @@
{**
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*}
{extends file=$layout}
{block name='content'}
{/block}

View File

@@ -0,0 +1,52 @@
{**
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*}
{extends file='layouts/layout-error.tpl'}
{block name='content'}
{block name='page_header_container'}
<header class="page-header">
{block name='page_header_logo'}
<img
class="error__logo"
src="{$shop.logo}"
alt="{$shop.name}"
title="{$shop.name}"
width="{$shop.logo_details.width}"
height="{$shop.logo_details.height}"
loading="lazy"
>
{/block}
{block name='hook_maintenance'}
{capture name='maintenance_content'}{$HOOK_MAINTENANCE nofilter}{/capture}
{if $smarty.capture.maintenance_content}
<div class="error__content">
{$smarty.capture.maintenance_content nofilter}
</div>
{/if}
{/block}
{block name='page_header'}
<h1 class="error__title">
{block name='page_title'}{l s='We\'ll be back soon.' d='Shop.Theme.Global'}{/block}
</h1>
{/block}
</header>
{/block}
{block name='page_content_container'}
{if $maintenance_text}
<section id="content" class="page-content page-content--maintenance">
<div class="error__text">
{block name='page_content'}
{$maintenance_text nofilter}
{/block}
</div>
</section>
{/if}
{/block}
{block name='page_footer_container'}{/block}
{/block}

View File

@@ -0,0 +1,31 @@
{**
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*}
<section id="content" class="page-content page-content--not-found">
{block name='page_content'}
{block name='error_content'}
{if isset($errorContent)}
{$errorContent nofilter}
<a href="{$urls.pages.index}" class="btn btn-primary">
<i class="material-icons" aria-hidden="true">&#xE5C4;</i>
{l s='Back to Home page' d='Shop.Theme.Catalog'}
</a>
{else}
<h1 class="h2">{l s='The page you are looking for is no longer available' d='Shop.Theme.Catalog'}</h1>
<p>{l s='It can not be reached anymore. Can we still attract you into our shop?' d='Shop.Theme.Catalog'}</p>
<a class="btn btn-primary" href="{$urls.pages.index}">
{l s='Go shopping' d='Shop.Theme.Catalog'}
<i class="material-icons" aria-hidden="true">&#xE5C8;</i>
</a>
{/if}
{/block}
{block name='hook_not_found'}
{hook h='displayNotFound'}
{/block}
{/block}
</section>

View File

@@ -0,0 +1,40 @@
{**
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*}
{extends file='layouts/layout-error.tpl'}
{block name='content'}
{block name='page_header_container'}
<header class="page-header">
{block name='page_header_logo'}
<img
class="error__logo"
src="{$shop.logo}"
alt="{$shop.name}"
title="{$shop.name}"
width="{$shop.logo_details.width}"
height="{$shop.logo_details.height}"
loading="lazy"
>
{/block}
{block name='page_header'}
<h1 class="error__title">
{block name='page_title'}{$shop.name}{/block}
</h1>
{/block}
</header>
{/block}
{block name='page_content_container'}
<section id="content" class="page-content page-content--restricted">
{block name='page_content'}
<h2>{l s='403 Forbidden' d='Shop.Theme.Global'}</h2>
<p>{l s='You cannot access this store from your country. We apologize for the inconvenience.' d='Shop.Theme.Global'}</p>
{/block}
</section>
{/block}
{block name='page_footer_container'}{/block}
{/block}