-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_preview.hbs
More file actions
37 lines (33 loc) · 1.14 KB
/
Copy path_preview.hbs
File metadata and controls
37 lines (33 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://dev07-web-hanoverdirect.demandware.net/on/demandware.static/Sites-TCS-Site/-/en_US/v1597436067321/css/style.css" type="text/css">
<link rel="stylesheet" href="https://dev07-web-hanoverdirect.demandware.net/on/demandware.static/Sites-TCS-Site/-/en_US/v1597436067321/css/override.css" type="text/css">
<link rel="stylesheet" href="{{ path '/css/main.css' }}">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Preview</title>
</head>
<body>
<div class="d-small d-md-none">
<h6>small</h6>
</div>
<div class="d-375 d-md-none">
<h6>375 zepplin</h6>
</div>
<div class="d-768 d-none d-md-block d-lg-none">
<h6>min 768 M</h6>
</div>
<div class="d-992 d-none d-lg-block d-xl-none">
<h6>min 992 L</h6>
</div>
<div class="d-1200 d-none d-xl-block">
<h6> min 1200 XL</h6>
</div>
<div class="d-1440 d-none d-xl-block">
<h6>1440</h6>
</div>
{{{ yield }}}
<script src="{{ path '/js/main.js' }}"></script>
</body>
</html>