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} {/if}
{/block} {/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"> <div id="left-column" class="sidebar col-xs-12 col-sm-12 col-md-4 col-lg-3">
{* Start - Custom *} {* Start - Custom *}
{hook h="displayLeftColumn"} {hook h="displayLeftColumn"}

View File

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

View File

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