head.html 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <head>
  2. <meta charset="utf-8">
  3. <meta name="robots" content="all,follow">
  4. <meta name="googlebot" content="index,follow,snippet,archive">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. {{ $title_plain := .Title | markdownify | plainify }}
  7. <title>{{ $title_plain }}</title>
  8. <meta name="author" content="{{ .Param " author" }}" />
  9. {{ $keywords := .Site.Params.defaultKeywords | default (slice "" | first 0) }}
  10. {{ if isset .Params "tags" }}{{ range .Params.tags }}{{ $keywords = $keywords | append . }}{{ end }}{{ end }}
  11. {{ if isset .Params "keywords" }}{{ range .Params.keywords }}{{ $keywords = $keywords | append . }}{{ end }}{{ end }}
  12. {{ if gt (len $keywords) 0 }}
  13. <meta name="keywords" content="{{ delimit (uniq $keywords) " , " }}">
  14. {{ end }}
  15. {{ $description_plain := default .Site.Params.defaultDescription .Description | markdownify | plainify }}
  16. <meta name="description" content="{{ $description_plain }}">
  17. {{ hugo.Generator }}
  18. <!-- Font -->
  19. <link href='//fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,500,700,800' rel='stylesheet'
  20. type='text/css'>
  21. <!-- Bootstrap and Font Awesome CSS -->
  22. <link rel="stylesheet" href="//use.fontawesome.com/releases/v5.11.2/css/all.css">
  23. <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
  24. integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
  25. <!-- CSS animations -->
  26. <link href="{{ "css/animate.css" | relURL}}" rel="stylesheet">
  27. <!-- Theme stylesheet, if possible do not edit this stylesheet -->
  28. {{ with .Site.Params.style }}
  29. <link href="{{ "css/style" | relURL}}.{{ . }}.css" rel="stylesheet" id="theme-stylesheet">
  30. {{ else }}
  31. <link href="{{ "css/style.default.css" | relURL}}" rel="stylesheet" id="theme-stylesheet">
  32. {{ end }}
  33. <!-- Custom stylesheet - for your changes -->
  34. <link href="{{ "css/custom.css" | relURL}}" rel="stylesheet">
  35. <link href="{{ "css/customnft.css" | relURL}}" rel="stylesheet">
  36. <!-- Responsivity for older IE -->
  37. {{ `
  38. <!--[if lt IE 9]>
  39. <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  40. <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  41. <![endif]-->
  42. ` | safeHTML }}
  43. <!-- Favicon and Apple touch icons-->
  44. <link rel="shortcut icon" href="{{ "img/favicon.ico" | relURL }}" type="image/x-icon" />
  45. <link rel="apple-touch-icon" href="{{ "img/apple-touch-icon.png" | relURL }}" />
  46. <!-- owl carousel CSS -->
  47. <link href="{{ "css/owl.carousel.css" | relURL}}" rel="stylesheet">
  48. <link href="{{ "css/owl.theme.css" | relURL}}" rel="stylesheet">
  49. <link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css" />
  50. <!-- RSS feed -->
  51. <link rel="alternate" href="{{ "/index.xml" | absURL }}" type="application/rss+xml" title="{{ .Site.Title }}">
  52. <script type="text/javascript" id="hs-script-loader" async defer src="//js-na1.hs-scripts.com/20485755.js"></script>
  53. <!-- Google tag (gtag.js) -->
  54. <script async src="https://www.googletagmanager.com/gtag/js?id=G-G5H9MMGQFM"></script>
  55. <script>
  56. window.dataLayer = window.dataLayer || [];
  57. function gtag() { dataLayer.push(arguments); }
  58. gtag('js', new Date());
  59. gtag('config', 'G-G5H9MMGQFM');
  60. </script>
  61. <!-- Event snippet for ChoozMo video marking conversion page -->
  62. <script>
  63. gtag('event', 'conversion', { 'send_to': 'AW-474336061/nOm7CPHvtZ0DEL2Wl-IB' });
  64. </script>
  65. </head>