-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlayout.twig
More file actions
46 lines (36 loc) · 1.54 KB
/
layout.twig
File metadata and controls
46 lines (36 loc) · 1.54 KB
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
<!doctype html>
<html class="no-js" lang="{{ page.seoLang }}">
{% include "includes/head.twig" %}
<body {{ isV10sSite ? 'id="migrated-site"' : '' }} class="{{ page.backgroundClass }} no-touch{% if app.mode != 'published' and app.mode != 'site-preview' %} edit-mode{% endif %}">
<div class="site-container">
{% include "includes/header.twig" %}
<div class="template-content">
<div class="container">
{% if plugins.ecommerce.store.live %}
<div class="ecommerce-bar">
<div class="container">
<div class="template-search">
<button class="search-toggle"></button>
<div class="search-overlay">
<form class="search-overlay-form" method="GET" action="/store">
<div class="search-overlay-form-group">
<input class="input js-display-control" id="page-zones__main- widgets__ecomproductslistWidget__ecomproductslist__search" name="productlist-search" placeholder="{{'widgets.ecomproductlist.search_placeholder'|translate('Search term')}}" type="search" value="">
<button class="button button--submit ecomproductslist__button" type="submit">Search</button>
</div>
</form>
</div>
</div>
<div class="template-basket">{{widget('ecombasket', 'shopbasket', {})|raw}}</div>
</div>
</div>
{% endif %}
{% block content %}
{% endblock %}
{% include "includes/footer.twig" %}
</div>
</div>
</div>
{% include basekit.bodyScript %}
<script src="{{ asset('js/theme.js')}}"></script>
</body>
</html>