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,126 @@
{**
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*}
{include file='_partials/helpers.tpl'}
<!doctype html>
<html lang="{$language.locale}">
<head>
{block name='head'}
{include file='_partials/head.tpl'}
{/block}
</head>
<body id="{$page.page_name}" class="{$page.body_classes|classnames}">
{block name='top_content'}
<div id="back-to-top"></div>
{/block}
{block name='skip_to_main_content'}
<a class="visually-hidden-focusable btn btn-primary skip-link" href="#main-content">{l s='Skip to main content' d='Shop.Theme.Global'}</a>
{/block}
{block name='hook_after_body_opening_tag'}
{hook h='displayAfterBodyOpeningTag'}
{/block}
{block name='product_activation'}
{include file='catalog/_partials/product-activation.tpl'}
{/block}
<header id="header" class="header js-sticky-header">
{block name='header'}
{include file='_partials/header.tpl'}
{/block}
</header>
<main id="wrapper" class="wrapper">
{hook h='displayWrapperTop'}
{block name='breadcrumb'}
{include file='_partials/breadcrumb.tpl'}
{/block}
{block name='main_content'}
{* This is the main content anchor used for accessibility. *}
<div id="main-content"></div>
{/block}
{block name='notifications'}
{include file='_partials/notifications.tpl'}
{/block}
{block name='content_columns'}
<div class="{block name='container_class'}columns-container container{/block}">
<div class="row">
{block name='left_column'}
<div id="left-column" class="left-column col-md-4 col-lg-3">
{if $page.page_name === 'product'}
{hook h='displayLeftColumnProduct'}
{else}
{hook h='displayLeftColumn'}
{/if}
</div>
{/block}
{block name='content_wrapper'}
<div id="center-column" class="center-column page col-md-4 col-lg-6">
{hook h='displayContentWrapperTop'}
{block name='content'}
<p>Hello world! This is HTML5 Boilerplate.</p>
{/block}
{hook h='displayContentWrapperBottom'}
</div>
{/block}
{block name='right_column'}
<div id="right-column" class="right-column col-md-4 col-lg-3">
{if $page.page_name === 'product'}
{hook h='displayRightColumnProduct'}
{else}
{hook h='displayRightColumn'}
{/if}
</div>
{/block}
</div>
</div>
{/block}
{hook h='displayWrapperBottom'}
</main>
{block name='footer'}
<footer id="footer" class="footer">
{include file='_partials/footer.tpl'}
</footer>
{/block}
{block name='javascript_bottom'}
{include file='_partials/javascript.tpl' javascript=$javascript.bottom}
{/block}
{block name='bottom_elements'}
{include file='components/page-loader.tpl'}
{include file='components/toast-container.tpl'}
{include file='components/password-policy-template.tpl'}
{/block}
{block name='hook_before_body_closing_tag'}
{hook h='displayBeforeBodyClosingTag'}
{/block}
{block name='modal_container'}
<div data-ps-target="modal-container">
{capture name="modal_content"}{hook h='displayModalContent'}{/capture}
{if $smarty.capture.modal_content}
{$smarty.capture.modal_content nofilter}
{/if}
</div>
{/block}
{block name='back_to_top'}
<a class="visually-hidden-focusable btn btn-primary back-to-top-link" href="#back-to-top">{l s='Back to top' d='Shop.Theme.Global'}</a>
{/block}
</body>
</html>

View File

@@ -0,0 +1,25 @@
{**
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*}
{extends file='layouts/layout-both-columns.tpl'}
{block name='header'}{/block}
{block name='breadcrumb'}{/block}
{block name='content_columns'}
{block name='left_column'}{/block}
{block name='content_wrapper'}
<div id="center-column" class="center-column page page--content-only">
{hook h='displayContentWrapperTop'}
{block name='content'}
<p>Hello world! This is HTML5 Boilerplate.</p>
{/block}
{hook h='displayContentWrapperBottom'}
</div>
{/block}
{block name='right_column'}{/block}
{/block}
{block name='footer'}{/block}

View File

@@ -0,0 +1,32 @@
{**
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*}
<!doctype html>
<html lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
{block name='head_seo'}
<title>{block name='head_seo_title'}{/block}</title>
<meta name="description" content="{block name='head_seo_description'}{/block}">
<meta name="keywords" content="{block name='head_seo_keywords'}{/block}">
{/block}
<meta name="viewport" content="width=device-width, initial-scale=1">
{block name='stylesheets'}
{include file='_partials/stylesheets.tpl' stylesheets=$stylesheets}
{/block}
</head>
<body>
<div id="layout-error" class="layout-error">
{block name='content'}
<p>Hello world! This is HTML5 Boilerplate.</p>
{/block}
</div>
</body>
</html>

View File

@@ -0,0 +1,21 @@
{**
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*}
{extends file='layouts/layout-both-columns.tpl'}
{block name='content_columns'}
<div class="{block name='container_class'}columns-container container{/block}">
{block name='left_column'}{/block}
{block name='content_wrapper'}
<div id="center-column" class="center-column page page--full-width">
{hook h='displayContentWrapperTop'}
{block name='content'}
<p>Hello world! This is HTML5 Boilerplate.</p>
{/block}
{hook h='displayContentWrapperBottom'}
</div>
{/block}
{block name='right_column'}{/block}
</div>
{/block}

View File

@@ -0,0 +1,33 @@
{**
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*}
{extends file='layouts/layout-both-columns.tpl'}
{block name="content_columns"}
<div class="{block name="container_class"}columns-container container{/block}">
<div class="row">
{block name="left_column"}
<div id="left-column" class="left-column col-md-4 col-lg-3">
{if $page.page_name == 'product'}
{hook h='displayLeftColumnProduct'}
{else}
{hook h='displayLeftColumn'}
{/if}
</div>
{/block}
{block name="content_wrapper"}
<div id="center-column" class="center-column page col-md-8 col-lg-9">
{hook h='displayContentWrapperTop'}
{block name="content"}
<p>Hello world! This is HTML5 Boilerplate.</p>
{/block}
{hook h='displayContentWrapperBottom'}
</div>
{/block}
{block name='right_column'}{/block}
</div>
</div>
{/block}

View File

@@ -0,0 +1,33 @@
{**
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*}
{extends file='layouts/layout-both-columns.tpl'}
{block name='content_columns'}
<div class="{block name='container_class'}columns-container container{/block}">
<div class="row">
{block name='left_column'}{/block}
{block name='content_wrapper'}
<div id="center-column" class="center-column page col-md-8 col-lg-9">
{hook h='displayContentWrapperTop'}
{block name='content'}
<p>Hello world! This is HTML5 Boilerplate.</p>
{/block}
{hook h='displayContentWrapperBottom'}
</div>
{/block}
{block name='right_column'}
<div id="right-column" class="right-column col-md-4 col-lg-3">
{if $page.page_name == 'product'}
{hook h='displayRightColumnProduct'}
{else}
{hook h='displayRightColumn'}
{/if}
</div>
{/block}
</div>
</div>
{/block}