1
0
mirror of https://github.com/cotes2020/jekyll-theme-chirpy.git synced 2025-06-08 00:27:58 +00:00

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

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