Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819202122232425262728293031323334353637
  1. {% extends "base.html" %}
  2. {% block extrahead %}
  3. <meta property="og:title" content="{% if page.title %}{{ page.title }} - {% endif %}{{ config.site_name }}">
  4. <meta property="og:description" content="{{ config.site_description }}">
  5. <meta property="og:url" content="{{ config.site_url }}">
  6. <meta property="og:type" content="website">
  7. <meta property="og:locale" content="en_US">
  8. <meta property="robots" content="index, follow">
  9. {% endblock %}
  10. {% block libs %}
  11. {{ super() }}
  12. <script data-goatcounter="https://encantar-js.goatcounter.com/count" async src="//gc.zgo.at/count.js"></script>
  13. {% endblock %}
  14. {% block content %}
  15. {{ super() }}
  16. {% endblock %}
  17. {% block footer %}
  18. <a id="support-button" href="/contact" data-goatcounter-click>
  19. &#x1F468;&#x200D;&#x1F4BB; Need help?
  20. </a>
  21. <script>
  22. document.addEventListener('DOMContentLoaded', function() {
  23. var salad = 'nbjmup;tvqqpsuAfodboubs/efw';
  24. var link = salad.split('').map(c => String.fromCharCode(c.charCodeAt(0)-1)).join('');
  25. document.querySelectorAll('a.support-link').forEach(function(a) {
  26. a.href = link;
  27. if(a.innerText.length == 0)
  28. a.innerText = link.substring(7);
  29. });
  30. });
  31. </script>
  32. {{ super() }}
  33. {% endblock %}