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
|
<!DOCTYPE html> <html lang="en">
<head> <title>FLORA HOUSE</title> <!-- css --> <?php include 'inc/headlinks.php';?> <meta name="keywords" content="FLORA HOUSE"> <meta name="description" content="Green is More Than a Colour"> <!-- js --> <?php include 'inc/link-js.php';?> </head>
<body>
<!-- header -->
<div class="subPageMenu">
<?php include 'inc/navbar.php';?> </div> <!-- end of header--> <section class="garyBg mainWarp"> <h1>Coming Soon</h1>
</section>
<?php include 'inc/subscribe.php';?>
<!-- end #section -->
<!-- footer --> <?php include 'inc/footer.php';?> <script src="../assets/js/swiper.js"></script> <script> var swiper = new Swiper('.swiper-container', { navigation: { nextEl: '.swiper-button-next', prevEl: '.swiper-button-prev', }, speed: 500, autoplay: { delay: 5000, }, loop: true, parallax: true, pagination: { el: '.swiper-pagination', }, on: { slideChangeTransitionStart: function() {
$('.swiper-slide-active .sliderTitle').appendTo(".sliderTitleWrap");
}, slideChangeTransitionEnd: function() {
}, }
}); </script>
</body>
</html>
|