Skip to content

Commit

Permalink
fix: correct the base URL parameter name (mmistakes#1576)
Browse files Browse the repository at this point in the history
mmistakes#1553 introduced
  • Loading branch information
cotes2020 authored Feb 29, 2024
1 parent 388c151 commit 19d6baf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _includes/img-url.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
%}

{% if include.absolute %}
{% assign url = site.url | append: site.base_url | append: url %}
{% assign url = site.url | append: site.baseurl | append: url %}
{% else %}
{% assign url = site.base_url | append: url %}
{% assign url = site.baseurl | append: url %}
{% endif %}
{% endunless %}
{%- endif -%}
Expand Down

0 comments on commit 19d6baf

Please sign in to comment.