fix: correct the base URL parameter name (#1576)

#1553 introduced
This commit is contained in:
Cotes Chung 2024-03-01 02:50:10 +08:00 committed by GitHub
parent 388c1511d6
commit 19d6bafbe1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -29,9 +29,9 @@
%} %}
{% if include.absolute %} {% if include.absolute %}
{% assign url = site.url | append: site.base_url | append: url %} {% assign url = site.url | append: site.baseurl | append: url %}
{% else %} {% else %}
{% assign url = site.base_url | append: url %} {% assign url = site.baseurl | append: url %}
{% endif %} {% endif %}
{% endunless %} {% endunless %}
{%- endif -%} {%- endif -%}