1
0
mirror of https://github.com/cotes2020/jekyll-theme-chirpy.git synced 2025-12-18 05:41:31 +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

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