head.html 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <meta charset="utf-8">
  2. {% include seo.html %}
  3. <link href="{% if site.atom_feed.path %}{{ site.atom_feed.path }}{% else %}{{ '/feed.xml' | absolute_url }}{% endif %}" type="application/atom+xml" rel="alternate" title="{{ site.title }} Feed">
  4. <!-- http://t.co/dKP3o1e -->
  5. <meta name="HandheldFriendly" content="True">
  6. <meta name="MobileOptimized" content="320">
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8. <script>
  9. document.documentElement.className = document.documentElement.className.replace(/\bno-js\b/g, '') + ' js ';
  10. </script>
  11. <script>
  12. var SeedAndDewConfig = {};
  13. (function() {
  14. SeedAndDewConfig['adClass'] = "snd-ad";
  15. /* * * DON'T EDIT BELOW THIS LINE * * */
  16. SeedAndDewConfig['projectId'] = '26c2c26d-725c-4a8c-a713-07f964d40e30';
  17. SeedAndDewConfig['loadStartTime'] = performance.now();
  18. SeedAndDewConfig['apiVersion'] = '2018-05-28'
  19. SeedAndDewConfig['sessionId'] = Math.random().toString(36).substring(2, 15);
  20. var snd = document.createElement('script');
  21. snd.type = 'text/javascript';
  22. snd.async = true;
  23. snd.src = 'https://www.seedanddew.com/static/embed.min.js';
  24. (document.getElementsByTagName('head')[0] ||
  25. document.getElementsByTagName('body')[0]).appendChild(snd);
  26. })();
  27. </script>
  28. <!-- For all browsers -->
  29. <link rel="stylesheet" href="{{ '/assets/css/carbonads.css' | absolute_url }}">
  30. <link rel="stylesheet" href="{{ '/assets/css/main.css' | absolute_url }}">
  31. <!--[if lte IE 9]>
  32. <style>
  33. /* old IE unsupported flexbox fixes */
  34. .greedy-nav .site-title {
  35. padding-right: 3em;
  36. }
  37. .greedy-nav button {
  38. position: absolute;
  39. top: 0;
  40. right: 0;
  41. height: 100%;
  42. }
  43. </style>
  44. <![endif]-->
  45. {% if site.head_scripts %}
  46. {% for script in site.head_scripts %}
  47. {% if script contains "://" %}
  48. {% capture script_path %}{{ script }}{% endcapture %}
  49. {% else %}
  50. {% capture script_path %}{{ script | absolute_url }}{% endcapture %}
  51. {% endif %}
  52. <script src="{{ script_path }}"></script>
  53. {% endfor %}
  54. {% endif %}