mirror of
https://github.com/next-theme/hexo-theme-next.git
synced 2026-01-18 18:33:42 +00:00
9 lines
479 B
Plaintext
9 lines
479 B
Plaintext
{%- if theme.canvas_ribbon.enable %}
|
|
{%- set canvas_ribbon_uri = theme.vendors.canvas_ribbon or '//cdn.jsdelivr.net/npm/ribbon.js@1/dist/ribbon.min.js' %}
|
|
<script size="{{ theme.canvas_ribbon.size }}" alpha="{{ theme.canvas_ribbon.alpha }}" zIndex="{{ theme.canvas_ribbon.zIndex }}" src="{{ url_for(canvas_ribbon_uri) }}"></script>
|
|
{%- endif %}
|
|
|
|
{%- for name, internal in js_vendors() %}
|
|
<script src="{{ url_for(theme.vendors[name] or internal) }}"></script>
|
|
{%- endfor %}
|