-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanding-page-mini.region
87 lines (71 loc) · 2.3 KB
/
landing-page-mini.region
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
<!doctype html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name=viewport content="width=device-width, initial-scale=1">
{squarespace-headers}
<squarespace:script src="site.js" combo="false" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/gsap/1.15.1/TweenMax.min.js"></script>
<squarespace:script src="jquery.scrollmagic.min.js" combo="false" />
<squarespace:script src="mini-homepage-anim.js" combo="false" />
</head>
<body class="{squarespace.page-classes}" id="{squarespace.page-id}">
<div class="splash-scene invisible">
<div class="top-section">
<div class="top-spacer collapsible">
<div class="lois-blurb">
championing London design talent <br class="hide-for-mobile-portrait">
in our independent <br class="hide-for-mobile-portrait">
online shop
</div>
</div>
<div class="top-menu collapsible">
<div class="slashes"><i class="icon-lois-slashes"></i></div>
<div class="menu-items">
<div class="left item"><a href="/shop-sections">shop</a></div>
<div class="right item"><a href="/makers">makers</a></div>
</div>
<div class="surround">
<a href="/">
<div class="centered-button white">
<div class="button-text">L O I S</div>
</div>
</a>
</div>
</div>
</div>
<div class="main-section">
<div class="splash-image mini-page homepage-header-image-tint">
<div class="splash-social full-height">
<div class="social-content">
<div class="launching header">launching 30 / 3 / 2015<br>#loiscreatives</div>
</div>
</div>
</div>
</div>
</div>
{.if template.mobileStylesEnabled}{.or}
<script>
Y.use('node', function() {
Y.on('domready', function() {
var move;
Y.all('.subnav a').each(function(a) {
a.on('touchstart', function() {
move = false;
});
a.on('touchmove', function() {
move = true;
});
a.on('touchend', function() {
if (move === false) {
window.location = a.getAttribute('href');
}
});
});
});
});
</script>
{.end}
</body>
</html>