Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

main.html 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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 _announce %}
  15. <a href="#" target="_blank" style="color:white"></a>
  16. {% endblock %}
  17. {% block content %}
  18. {{ super() }}
  19. {% endblock %}
  20. {% block footer %}
  21. <button id="support-button" onclick="document.getElementById('support-widget').classList.toggle('invisible')">
  22. &#x1F468;&#x200D;&#x1F4BB; Need help?
  23. </button>
  24. <section id="support-widget" class="md-typeset invisible">
  25. <h4>Technical support</h4>
  26. <p>Get expert guidance on WebAR with encantar.js by contacting the developer at <a href="#" class="support-link" id="technical-support-widget" data-goatcounter-click></a>.</p>
  27. <p>If you have any projects that you want created or modified, feel free to get in touch!</p>
  28. </section>
  29. <script>
  30. document.addEventListener('DOMContentLoaded', function() {
  31. var salad = 'nbjmup;tvqqpsuAfodboubs/efw';
  32. var link = salad.split('').map(c => String.fromCharCode(c.charCodeAt(0)-1)).join('');
  33. document.querySelectorAll('a.support-link').forEach(function(a) {
  34. a.href = link;
  35. if(a.innerText.length == 0)
  36. a.innerText = link.substring(7);
  37. });
  38. });
  39. </script>
  40. {{ super() }}
  41. {% endblock %}