-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathresponsive.cart.twig
47 lines (41 loc) · 1.6 KB
/
responsive.cart.twig
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
<!DOCTYPE html>
<html id="fc">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>{{ config.store_name }} Cart</title>
<meta name="viewport" content="width=device-width, initial-scale=1, minimal-ui">
<!--[if lt IE 9 ]>
<script type="text/javascript">
var IEElms = ['article', 'aside', 'header', 'main', 'nav', 'section'];
for (var i = 0; i < IEElms.length; i++) {
document.createElement(IEElms[i]);
};
</script>
<![endif]-->
<link href="{{ config.css_file }}" rel="stylesheet" media="screen">
<!-- FC script insertion -->{{ fc_header_content|raw }}<!-- /FC script insertion -->
<!--[if lt IE 9 ]>
<script src="{{ config.cdn_static_path }}scripts/respond/respond.1.4.2.js" charset="utf-8"></script>
<style>
#fc label.fc-form-label--with-placeholder {
display:block !important;
left:0 !important;
width:auto !important;
height:50px !important;
clip:auto !important;
position:relative !important;
text-align:left !important;
}
</style>
<![endif]-->
</head>
<body class="fc-context--cart-fullpage" data-fc-context='{"cart_is_fullpage":true}'>
{% set cart_is_fullpage = true %}
<div data-fc-container="cart">
{% embed 'cart.inc.twig' %}
{% endembed %}
</div>
<!-- FC footer script insertion -->{% include template_from_string(fc_footer_content) %}<!-- /FC footer scripts -->
</body>
</html>