-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathlayout-both-columns.tpl
101 lines (85 loc) · 2.96 KB
/
layout-both-columns.tpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{**
* 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='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">
{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='notifications'}
{include file='_partials/notifications.tpl'}
{/block}
{block name="content_columns"}
<div class="{block name="container_class"}container{/block}">
<div class="row">
{block name="left_column"}
<div id="left-column" class="wrapper__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"}
<section id="content-wrapper" class="wrapper__content col-md-4 col-lg-6">
{hook h="displayContentWrapperTop"}
{block name="content"}
<p>Hello world! This is HTML5 Boilerplate.</p>
{/block}
{hook h="displayContentWrapperBottom"}
</section>
{/block}
{block name="right_column"}
<div id="right-column" class="wrapper__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>
<footer id="footer" class="footer">
{block name="footer"}
{include file="_partials/footer.tpl"}
{/block}
</footer>
{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}
</body>
</html>