single.html 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. <!DOCTYPE html>
  2. <html lang="{{ .Site.LanguageCode }}">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="robots" content="all,follow">
  6. <meta name="googlebot" content="index,follow,snippet,archive">
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. {{ $title_plain := .Title | markdownify | plainify }}
  9. <title>{{ $title_plain }}</title>
  10. <meta name="author" content="{{ .Param " author" }}" />
  11. {{ $keywords := .Site.Params.defaultKeywords | default (slice "" | first 0) }}
  12. {{ if isset .Params "tags" }}{{ range .Params.tags }}{{ $keywords = $keywords | append . }}{{ end }}{{ end }}
  13. {{ if isset .Params "keywords" }}{{ range .Params.keywords }}{{ $keywords = $keywords | append . }}{{ end }}{{ end }}
  14. {{ if gt (len $keywords) 0 }}
  15. <meta name="keywords" content="{{ delimit (uniq $keywords) " , " }}">
  16. {{ end }}
  17. {{ $description_plain := default .Site.Params.defaultDescription .Description | markdownify | plainify }}
  18. <meta name="description" content="{{ $description_plain }}">
  19. {{ hugo.Generator }}
  20. <!-- Font -->
  21. <link href='//fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,500,700,800' rel='stylesheet'
  22. type='text/css'>
  23. <!-- Bootstrap and Font Awesome CSS -->
  24. <link rel="stylesheet" href="//use.fontawesome.com/releases/v5.11.2/css/all.css">
  25. <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
  26. integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
  27. <!-- CSS animations -->
  28. <link href="{{ " css/animate.css" | relURL}}" rel="stylesheet">
  29. <!-- Theme stylesheet, if possible do not edit this stylesheet -->
  30. {{ with .Site.Params.style }}
  31. <link href="{{ " css/style" | relURL}}.{{ . }}.css" rel="stylesheet" id="theme-stylesheet">
  32. {{ else }}
  33. <link href="{{ " css/style.default.css" | relURL}}" rel="stylesheet" id="theme-stylesheet">
  34. {{ end }}
  35. <!-- Custom stylesheet - for your changes -->
  36. <link href="{{ " css/custom.css" | relURL}}" rel="stylesheet">
  37. <link href="{{ " css/customnft.css" | relURL}}" rel="stylesheet">
  38. <!-- Responsivity for older IE -->
  39. {{ `
  40. <!--[if lt IE 9]>
  41. <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  42. <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  43. <![endif]-->
  44. ` | safeHTML }}
  45. <!-- Favicon and Apple touch icons-->
  46. <link rel="shortcut icon" href="{{ " img/favicon.ico" | relURL }}" type="image/x-icon" />
  47. <link rel="apple-touch-icon" href="{{ " img/apple-touch-icon.png" | relURL }}" />
  48. <!-- owl carousel CSS -->
  49. <link href="{{ " css/owl.carousel.css" | relURL}}" rel="stylesheet">
  50. <link href="{{ " css/owl.theme.css" | relURL}}" rel="stylesheet">
  51. <link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css" />
  52. <!-- RSS feed -->
  53. <link rel="alternate" href="{{ " /index.xml" | absURL }}" type="application/rss+xml" title="{{ .Site.Title }}">
  54. <!-- Facebook OpenGraph tags -->
  55. {{ $is_blog := and (eq .Type "blog") (eq .Kind "page") }}
  56. {{ $has_image := isset .Params "banner" }}
  57. {{ $image := cond $has_image .Params.banner (.Site.Params.default_sharing_image | default "img/sharing-default.png")
  58. }}
  59. {{ $is_valid_image := print "static/" $image | fileExists }}
  60. {{ if $is_valid_image }}
  61. {{ $image_ext := path.Ext $image }}
  62. <meta property="og:locale" content="{{ replace .Site.LanguageCode " -" "_" }}">
  63. <meta property="og:site_name" content="{{ .Site.Title }}">
  64. <meta property="og:title" content="{{ $title_plain }}">
  65. <meta property="og:type" content="{{ cond $is_blog " article" "website" }}">
  66. <meta property="og:url" content="{{ .Permalink }}" />
  67. <meta property="og:description" content="{{ $description_plain }}">
  68. <meta property="og:image" content="{{ $image | absURL }}">
  69. <meta property="og:image:type" content="image/{{ if eq $image_ext " .svg" }}svg+xml{{ else }}{{ trim $image_ext "."
  70. }}{{ end }}">
  71. {{ with .Params.banner_alt }}
  72. <meta property="og:image:alt" content="{{ . | markdownify | plainify }}">{{ end }}
  73. {{ $image_local := printf "/static/%s" $image}}
  74. {{ with (imageConfig $image_local) }}
  75. <meta property="og:image:width" content="{{ .Width }}">
  76. <meta property="og:image:height" content="{{ .Height }}">
  77. {{ end }}
  78. {{ end }}
  79. {{ with .Lastmod }}
  80. <meta property="og:updated_time" content="{{ .Format " 2006-01-02T15:04:05Z0700" }}">{{ end }}
  81. {{ if $is_blog }}
  82. {{ with .Param "facebook_site" }}
  83. <meta property="article:publisher" content="https://www.facebook.com/{{ . }}/">{{ end }}
  84. {{ with .Param "facebook_author" }}
  85. <meta property="article:author" content="https://www.facebook.com/{{ . }}/">{{ end }}
  86. {{ with .Params.categories }}
  87. <meta property="article:section" content="{{ index . 0 }}">{{ end }}
  88. {{ range .Params.tags }}
  89. <meta property="article:tag" content="{{ . }}">
  90. {{ end }}
  91. {{ if gt .ExpiryDate .PublishDate }}
  92. <meta property="article:expiration_time" content="{{ .ExpiryDate.Format " 2006-01-02T15:04:05Z0700" }}">{{ end }}
  93. {{ with .PublishDate }}
  94. <meta property="article:published_time" content="{{ .Format " 2006-01-02T15:04:05Z0700" }}">{{ end }}
  95. {{ with .Lastmod }}
  96. <meta property="article:modified_time" content="{{ .Format " 2006-01-02T15:04:05Z0700" }}">{{ end }}
  97. {{ end }}
  98. <!-- Twitter Card meta tags -->
  99. <meta name="twitter:card"
  100. content="summary{{ if (and $is_blog (and $has_image $is_valid_image)) }}_large_image{{ end }}">
  101. {{ with .Param "twitter_site" }}
  102. <meta name="twitter:site" content="@{{ . }}">{{ end }}
  103. <meta name="twitter:title" content="{{ $title_plain | truncate 70 }}">
  104. {{ if $is_valid_image }}
  105. <meta name="twitter:image" content="{{ $image | absURL }}">
  106. {{ end }}
  107. <meta name="twitter:description" content="{{ $description_plain | truncate 200 }}">
  108. {{ with .Param "twitter_author" }}
  109. <meta name="twitter:creator" content="@{{ . }}">{{ end }}
  110. <meta name="facebook-domain-verification" content="3xipgs46lfxeohb6sq2xw3ulmq94ew" />
  111. <!-- Start of HubSpot Embed Code -->
  112. <script type="text/javascript" id="hs-script-loader" async defer src="//js-na1.hs-scripts.com/9082955.js"></script>
  113. <!-- End of HubSpot Embed Code -->
  114. <!-- Global site tag (gtag.js) - Google Ads: 474336061 -->
  115. <script async src="https://www.googletagmanager.com/gtag/js?id=AW-474336061"></script>
  116. <script>
  117. window.dataLayer = window.dataLayer || [];
  118. function gtag() { dataLayer.push(arguments); }
  119. gtag('js', new Date());
  120. gtag('config', 'AW-474336061');
  121. </script>
  122. <!-- Google Tag Manager -->
  123. <script>(function (w, d, s, l, i) {
  124. w[l] = w[l] || []; w[l].push({
  125. 'gtm.start':
  126. new Date().getTime(), event: 'gtm.js'
  127. }); var f = d.getElementsByTagName(s)[0],
  128. j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
  129. 'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
  130. })(window, document, 'script', 'dataLayer', 'GTM-MTWWP3G');</script>
  131. <!-- End Google Tag Manager -->
  132. <!-- Global site tag (gtag.js) - Google Analytics -->
  133. <script async src="https://www.googletagmanager.com/gtag/js?id=G-9JHSFXZ4TT"></script>
  134. <script>
  135. window.dataLayer = window.dataLayer || [];
  136. function gtag() { dataLayer.push(arguments); }
  137. gtag('js', new Date());
  138. gtag('config', 'G-9JHSFXZ4TT');
  139. </script>
  140. <!-- Event snippet for ChoozMo video marking conversion page -->
  141. <script>
  142. gtag('event', 'conversion', { 'send_to': 'AW-474336061/nOm7CPHvtZ0DEL2Wl-IB' });
  143. </script>
  144. </head>
  145. <body>
  146. <!-- Google Tag Manager (noscript) -->
  147. <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MTWWP3G" height="0" width="0"
  148. style="display:none;visibility:hidden"></iframe></noscript>
  149. <!-- End Google Tag Manager (noscript) -->
  150. <div id="all" style="overflow-x:hidden;">
  151. {{ partial "nav.html" . }}
  152. {{ partial "LP_components/hero.html" . }}
  153. {{ partial "LP_components/use_cases.html" . }}
  154. {{ partial "LP_components/steps.html" . }}
  155. {{ partial "LP_components/features.html" . }}
  156. {{ partial "LP_components/blogs_tab.html" . }}
  157. {{ partial "LP_components/action.html" . }}
  158. {{ partial "LP_components/Footer.html" . }}
  159. {{ partial "LP_components/news.html" . }}
  160. </div>
  161. <!-- /#all -->
  162. {{ partial "scripts.html" . }}
  163. <script type="application/javascript">
  164. var doNotTrack = false;
  165. if (!doNotTrack) {
  166. (function (i, s, o, g, r, a, m) {
  167. i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () {
  168. (i[r].q = i[r].q || []).push(arguments)
  169. }, i[r].l = 1 * new Date(); a = s.createElement(o),
  170. m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m)
  171. })(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
  172. ga('create', 'UA-153100602-5', 'auto');
  173. ga('send', 'pageview');
  174. }
  175. </script>
  176. <script>
  177. function tabLP() {
  178. if (('.m-tabs').length) {
  179. // Show the first tab by default
  180. $('.blog-tabs-stage>div').hide();
  181. $('.blog-tabs-stage>div:first').show();
  182. $('.blog-tabs-nav li:first').addClass('blog-tab-active');
  183. // Change tab class and display content
  184. $('.blog-tabs-nav a').on('click', function (event) {
  185. event.preventDefault();
  186. $('.blog-tabs-nav li').removeClass('blog-tab-active');
  187. $(this).parent().addClass('blog-tab-active');
  188. $('.blog-tabs-stage>div').hide();
  189. $($(this).attr('href')).show();
  190. });
  191. }
  192. }
  193. tabLP();
  194. function debounce(func, wait = 20, immediate = true) {
  195. var timeout;
  196. return function () {
  197. var context = this, args = arguments;
  198. var later = function () {
  199. timeout = null;
  200. if (!immediate) func.apply(context, args);
  201. };
  202. var callNow = immediate && !timeout;
  203. clearTimeout(timeout);
  204. timeout = setTimeout(later, wait);
  205. if (callNow) func.apply(context, args);
  206. };
  207. };
  208. const featuresBlock = document.querySelectorAll('.features-block');
  209. const featuresRow = document.querySelectorAll('.sec-features .row');
  210. function checkSlide() {
  211. featuresRow.forEach((block, i) => {
  212. // half way through the image
  213. const slideInAt = (window.scrollY + window.innerHeight) - block.offsetHeight / 2;
  214. // bottom of the image
  215. const isHalfShown = slideInAt > block.offsetTop;
  216. if (isHalfShown) {
  217. featuresBlock[i].classList.add('active');
  218. }
  219. });
  220. }
  221. window.addEventListener('scroll', debounce(checkSlide));
  222. $('.navbar-nav .dropdown:nth-of-type(2)').click(function () {
  223. $('html, body').animate({
  224. scrollTop: $("#sec-features").offset().top
  225. }, 1000);
  226. })
  227. </script>
  228. </body>
  229. </html>