Files
2026-08-27 14:28:09 +03:00

12 lines
656 B
HTML

{%- 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>