Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

main.html 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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>You can get expert guidance on WebAR with encantar.js by contacting <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, then feel free to <a href="#" class="support-link" id="technical-support-consulting-widget" data-goatcounter-click>get in touch</a>.</p>
  28. <p>I speak English and Portuguese. Falo Inglês e Português.</p>
  29. </section>
  30. <script>
  31. document.addEventListener('DOMContentLoaded', function() {
  32. var salad = 'nbjmup;tvqqpsuAfodboubs/efw';
  33. var link = salad.split('').map(c => String.fromCharCode(c.charCodeAt(0)-1)).join('');
  34. document.querySelectorAll('a.support-link').forEach(function(a) {
  35. a.href = link;
  36. if(a.innerText.length == 0)
  37. a.innerText = link.substring(7);
  38. });
  39. });
  40. </script>
  41. {{ super() }}
  42. {% endblock %}