Initial commit

This commit is contained in:
Oleh Omelchenko
2026-08-27 14:28:09 +03:00
committed by GitHub
commit 54c3647c96
18 changed files with 4129 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
{%- comment -%}
Вбудовує графік на будь-якій сторінці, не тільки в роботі з _works/.
Приклади:
{% include viz.html tableau="https://public.tableau.com/app/profile/…/viz/Книга/Аркуш" %}
{% include viz.html spec="specs/my-chart.json" %}
{% include viz.html tableau="…" wide=true height=1150 %}
{%- endcomment -%}
<div class="viz{% if include.wide %} wide{% endif %}"
{%- if include.height %} data-height="{{ include.height }}"{% endif %}
{%- if include.tableau %} data-tableau="{{ include.tableau }}"
{%- elsif include.spec %} data-spec="{{ include.spec }}"{% endif %}></div>