This commit is contained in:
2025-10-16 21:30:36 +02:00
3 changed files with 77 additions and 71 deletions

View File

@@ -41,9 +41,9 @@
{/if}
{/block}
{hook h="displayHeaderCategory"}
{* {hook h="displayHeaderCategory"} *}
<div class="row">
<div class="row 111">
<div id="left-column" class="sidebar col-xs-12 col-sm-12 col-md-4 col-lg-3">
{* Start - Custom *}
{hook h="displayLeftColumn"}

View File

@@ -28,41 +28,42 @@
<!doctype html>
<html lang="{$language.locale}">
<head>
{block name='head'}
{include file='_partials/head.tpl'}
{/block}
</head>
<head>
{block name='head'}
{include file='_partials/head.tpl'}
{/block}
</head>
<body id="{$page.page_name}" class="{$page.body_classes|classnames}">
<body id="{$page.page_name}" class="{$page.body_classes|classnames}">
{block name='hook_after_body_opening_tag'}
{hook h='displayAfterBodyOpeningTag'}
{block name='hook_after_body_opening_tag'}
{hook h='displayAfterBodyOpeningTag'}
{/block}
<main>
{block name='product_activation'}
{include file='catalog/_partials/product-activation.tpl'}
{/block}
<main>
{block name='product_activation'}
{include file='catalog/_partials/product-activation.tpl'}
<header id="header">
{block name='header'}
{include file='_partials/header.tpl'}
{/block}
</header>
<section id="wrapper">
{block name='notifications'}
{include file='_partials/notifications.tpl'}
{/block}
<header id="header">
{block name='header'}
{include file='_partials/header.tpl'}
{/block}
</header>
<section id="wrapper">
{block name='notifications'}
{include file='_partials/notifications.tpl'}
{hook h="displayWrapperTop"}
<div class="container">
{block name='breadcrumb'}
{include file='_partials/breadcrumb.tpl'}
{/block}
{hook h="displayWrapperTop"}
<div class="container">
{block name='breadcrumb'}
{include file='_partials/breadcrumb.tpl'}
{/block}
<div class="row">
<div class="row">
{if $page.page_name != 'prices-drop'}
{block name="left_column"}
<div id="left-column" class="col-xs-12 col-sm-4 col-md-3">
{if $page.page_name == 'product'}
@@ -72,46 +73,47 @@
{/if}
</div>
{/block}
{/if}
{block name="content_wrapper"}
<div id="content-wrapper" class="js-content-wrapper left-column right-column col-sm-4 col-md-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="col-xs-12 col-sm-4 col-md-3">
{if $page.page_name == 'product'}
{hook h='displayRightColumnProduct'}
{else}
{hook h="displayRightColumn"}
{/if}
</div>
{/block}
{block name="content_wrapper"}
<div id="content-wrapper" class="js-content-wrapper left-column right-column col-sm-4 col-md-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="col-xs-12 col-sm-4 col-md-3">
{if $page.page_name == 'product'}
{hook h='displayRightColumnProduct'}
{else}
{hook h="displayRightColumn"}
{/if}
</div>
{/block}
</div>
{hook h="displayWrapperBottom"}
</section>
</div>
{hook h="displayWrapperBottom"}
</section>
<footer id="footer" class="js-footer">
{block name="footer"}
{include file="_partials/footer.tpl"}
{/block}
</footer>
<footer id="footer" class="js-footer">
{block name="footer"}
{include file="_partials/footer.tpl"}
{/block}
</footer>
</main>
</main>
{block name='javascript_bottom'}
{include file="_partials/javascript.tpl" javascript=$javascript.bottom}
{/block}
{block name='javascript_bottom'}
{include file="_partials/javascript.tpl" javascript=$javascript.bottom}
{/block}
{block name='hook_before_body_closing_tag'}
{hook h='displayBeforeBodyClosingTag'}
{/block}
</body>
{block name='hook_before_body_closing_tag'}
{hook h='displayBeforeBodyClosingTag'}
{/block}
</body>
</html>
</html>

View File

@@ -27,11 +27,15 @@
{block name='right_column'}{/block}
{block name='content_wrapper'}
<div id="content-wrapper" class="js-content-wrapper left-column col-xs-12 col-sm-8 col-md-9">
{hook h="displayContentWrapperTop"}
{block name='content'}
<p>Hello world! This is HTML5 Boilerplate.</p>
{/block}
{hook h="displayContentWrapperBottom"}
</div>
{if $page.page_name == 'prices-drop'}
<div id="content-wrapper" class="1 js-content-wrapper left-column col-xs-12">
{else}
<div id="content-wrapper" class="1 js-content-wrapper left-column col-xs-12 col-sm-8 col-md-9">
{/if}
{hook h="displayContentWrapperTop"}
{block name='content'}
<p>Hello world! This is HTML5 Boilerplate.</p>
{/block}
{hook h="displayContentWrapperBottom"}
</div>
{/block}