-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbaseNH.html
167 lines (131 loc) · 6.89 KB
/
baseNH.html
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!doctype html>
<html lang="{{ LANGUAGE_CODE }}"{% if LANGUAGE_BIDI %} dir="rtl"{% endif %}>
{% load i18n pages_tags mezzanine_tags blog_tags staticfiles keyword_tags disqus_tags events_tags %}
<head>
<!-- Title -->
<title>{% block meta_title %}{% endblock %}{% if settings.SITE_TITLE %} | {{ settings.SITE_TITLE }}{% endif %}</title>
<!-- Required Meta Tags Always Come First -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<!-- Favicon -->
<link rel="shortcut icon" href="{% static 'favicon.png' %}">
<!-- Google Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800">
<!-- CSS Global Compulsory -->
<link rel="stylesheet" href="{% static 'assets20/vendor/bootstrap/bootstrap.min.css' %}">
<!-- CSS Global Icons -->
<link rel="stylesheet" href="{% static 'assets20/vendor/icon-awesome/css/font-awesome.min.css' %}">
<link rel="stylesheet" href="{% static 'assets20/vendor/icon-line/css/simple-line-icons.css' %}">
<link rel="stylesheet" href="{% static 'assets20/vendor/icon-etlinefont/style.css' %}">
<link rel="stylesheet" href="{% static 'assets20/vendor/icon-line-pro/style.css' %}">
<link rel="stylesheet" href="{% static 'assets20/vendor/icon-hs/style.css' %}">
<link rel="stylesheet" href="{% static 'assets20/vendor/animate.css' %}">
<link rel="stylesheet" href="{% static 'assets20/vendor/dzsparallaxer/dzsparallaxer.css' %}">
<link rel="stylesheet" href="{% static 'assets20/vendor/dzsparallaxer/dzsscroller/scroller.css' %}">
<link rel="stylesheet" href="{% static 'assets20/vendor/dzsparallaxer/advancedscroller/plugin.css' %}">
<link rel="stylesheet" href="{% static 'assets20/vendor/slick-carousel/slick/slick.css' %}">
<link rel="stylesheet" href="{% static 'assets20/vendor/fancybox/jquery.fancybox.css' %}">
<link rel="stylesheet" href="{% static 'assets20/vendor/hs-bg-video/hs-bg-video.css' %}">
<link rel="stylesheet" href="{% static 'assets20/vendor/hs-megamenu/src/hs.megamenu.css' %}">
<link rel="stylesheet" href="{% static 'assets20/vendor/hamburgers/hamburgers.min.css' %}">
<!-- CSS Header and Footer -->
<link rel="stylesheet" href="{% static 'assets/css/footers/footer-v1.css' %}">
<!-- CSS Unify -->
<link rel="stylesheet" href="{% static 'assets20/css/unify-core.css' %}">
<link rel="stylesheet" href="{% static 'assets20/css/unify-components.css' %}">
<link rel="stylesheet" href="{% static 'assets20/css/unify-globals.css' %}">
{% block extra_css %}{% endblock extra_css %}
<!-- CSS Customization -->
<link rel="stylesheet" href="{% static 'assets20/css/custom.css' %}">
</head>
{% block extra_head %}{% endblock %}
<body>
<main>
{% include 'navbarN.html' %}
{% block content %}
{% endblock %}
{% include 'footer.html' %}
<a class="js-go-to u-go-to-v1" href="#" data-type="fixed" data-position='{
"bottom": 15,
"right": 15
}' data-offset-top="400" data-compensation="#js-header" data-show-effect="zoomIn">
<i class="hs-icon hs-icon-arrow-top"></i>
</a>
</main>
<div class="u-outer-spaces-helper"></div>
<!-- JS Global Compulsory -->
<script src="{% static 'assets20/vendor/jquery/jquery.min.js' %}"></script>
<script src="{% static 'assets20/vendor/jquery-migrate/jquery-migrate.min.js' %}"></script>
<script src="{% static 'assets20/vendor/popper.js/popper.min.js' %}"></script>
<script src="{% static 'assets20/vendor/bootstrap/bootstrap.min.js' %}"></script>
<!-- JS Implementing Plugins -->
<script src="{% static 'assets20/vendor/appear.js' %}"></script>
<script src="{% static 'assets20/vendor/slick-carousel/slick/slick.js' %}"></script>
<script src="{% static 'assets20/vendor/hs-megamenu/src/hs.megamenu.js' %}"></script>
<script src="{% static 'assets20/vendor/dzsparallaxer/dzsparallaxer.js' %}"></script>
<script src="{% static 'assets20/vendor/dzsparallaxer/dzsscroller/scroller.js' %}"></script>
<script src="{% static 'assets20/vendor/dzsparallaxer/advancedscroller/plugin.js' %}"></script>
<script src="{% static 'assets20/vendor/hs-bg-video/hs-bg-video.js' %}"></script>
<script src="{% static 'assets20/vendor/hs-bg-video/vendor/player.min.js' %}"></script>
<script src="{% static 'assets20/vendor/fancybox/jquery.fancybox.js' %}"></script>
<script src="{% static 'assets/plugins/owl-carousel/owl-carousel/owl.carousel.js' %}"></script>
<!-- JS Unify -->
<script src="{% static 'assets20/js/hs.core.js' %}"></script>
<script src="{% static 'assets20/js/components/hs.header.js' %}"></script>
<script src="{% static 'assets20/js/helpers/hs.hamburgers.js' %}"></script>
<script src="{% static 'assets20/js/components/hs.tabs.js' %}"></script>
<script src="{% static 'assets20/js/helpers/hs.height-calc.js' %}"></script>
<script src="{% static 'assets20/js/components/hs.onscroll-animation.js' %}"></script>
<script src="{% static 'assets20/js/helpers/hs.bg-video.js' %}"></script>
<script src="{% static 'assets20/js/components/hs.popup.js' %}"></script>
<script src="{% static 'assets20/js/components/hs.carousel.js' %}"></script>
<script src="{% static 'assets20/js/components/hs.go-to.js' %}"></script>
<!-- JS Customization -->
<script src="{% static 'assets20/js/custom.js' %}"></script>
<!-- JS Plugins Init. -->
<script>
$(document).on('ready', function () {
// initialization of carousel
$.HSCore.components.HSCarousel.init('.js-carousel');
// initialization of tabs
$.HSCore.components.HSTabs.init('[role="tablist"]');
// initialization of header's height equal offset
$.HSCore.helpers.HSHeightCalc.init();
// initialization of scroll animation
$.HSCore.components.HSOnScrollAnimation.init('[data-animation]');
// initialization of video on background
$.HSCore.helpers.HSBgVideo.init('.js-bg-video');
// initialization of popups with media
$.HSCore.components.HSPopup.init('.js-fancybox-media', {
helpers: {
media: {},
overlay: {
css: {
'background': 'rgba(0, 0, 0, .8)'
}
}
}
});
// initialization of go to
$.HSCore.components.HSGoTo.init('.js-go-to');
});
$(window).on('load', function () {
// initialization of header
$.HSCore.components.HSHeader.init($('#js-header'));
$.HSCore.helpers.HSHamburgers.init('.hamburger');
// initialization of HSMegaMenu component
$('.js-mega-menu').HSMegaMenu({
event: 'hover',
pageContainer: $('.container'),
breakpoint: 991
});
});
$(window).on('resize', function () {
setTimeout(function () {
$.HSCore.components.HSTabs.init('[role="tablist"]');
}, 200);
});
</script>
</body>
</html>