mirror of
https://github.com/d3vyce/fastapi-toolsets.git
synced 2026-04-16 23:02:29 +02:00
22 lines
530 B
HTML
22 lines
530 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block extrahead %}
|
|
<script
|
|
defer
|
|
src="https://analytics.d3vyce.fr/script.js"
|
|
data-website-id="338b8816-7b99-4c6a-82f3-15595be3fd47"
|
|
></script>
|
|
{{ super() }}
|
|
{% endblock %}
|
|
|
|
{% block scripts %}
|
|
{% if config.extra.version %}
|
|
<script>
|
|
var __cfg = JSON.parse(document.getElementById("__config").textContent);
|
|
__cfg.version = {{ config.extra.version | tojson }};
|
|
document.getElementById("__config").textContent = JSON.stringify(__cfg);
|
|
</script>
|
|
{% endif %}
|
|
{{ super() }}
|
|
{% endblock %}
|