12345678910111213141516171819202122232425262728293031323334353637 |
- {% extends "base.html" %}
-
- {% block extrahead %}
- <meta property="og:title" content="{% if page.title %}{{ page.title }} - {% endif %}{{ config.site_name }}">
- <meta property="og:description" content="{{ config.site_description }}">
- <meta property="og:url" content="{{ config.site_url }}">
- <meta property="og:type" content="website">
- <meta property="og:locale" content="en_US">
- <meta property="robots" content="index, follow">
- {% endblock %}
-
- {% block libs %}
- {{ super() }}
- <script data-goatcounter="https://encantar-js.goatcounter.com/count" async src="//gc.zgo.at/count.js"></script>
- {% endblock %}
-
- {% block content %}
- {{ super() }}
- {% endblock %}
-
- {% block footer %}
- <a id="support-button" href="/contact" data-goatcounter-click>
- 👨‍💻 Need help?
- </a>
- <script>
- document.addEventListener('DOMContentLoaded', function() {
- var salad = 'nbjmup;tvqqpsuAfodboubs/efw';
- var link = salad.split('').map(c => String.fromCharCode(c.charCodeAt(0)-1)).join('');
- document.querySelectorAll('a.support-link').forEach(function(a) {
- a.href = link;
- if(a.innerText.length == 0)
- a.innerText = link.substring(7);
- });
- });
- </script>
- {{ super() }}
- {% endblock %}
|