🐛 fix(iine): only load script on pages, not sections

This commit is contained in:
welpo 2025-12-12 22:38:59 +01:00
parent 89ebf0193e
commit a910d9d280
No known key found for this signature in database
GPG key ID: A2F978CF4EC1F5A6

View file

@ -83,6 +83,6 @@
{%- endif -%}
{# Add iine.js for the like button #}
{%- if macros_settings::evaluate_setting_priority(setting="iine", page=page_s, section=section_s, default_global_value=false) == "true" -%}
{%- if page and macros_settings::evaluate_setting_priority(setting="iine", page=page_s, section=section_s, default_global_value=false) == "true" -%}
<script defer src="https://cdn.jsdelivr.net/gh/welpo/iine@main/iine.mini.js"></script>
{%- endif -%}