fix(post): correct the image URLs (#1627)
This commit is contained in:
parent
b7aa05d03a
commit
2d649aae0e
1 changed files with 12 additions and 16 deletions
|
@ -17,24 +17,20 @@
|
||||||
{%- comment -%} Add page image path prefix {%- endcomment -%}
|
{%- comment -%} Add page image path prefix {%- endcomment -%}
|
||||||
{% assign url = include.img_path | default: '' | append: '/' | append: url %}
|
{% assign url = include.img_path | default: '' | append: '/' | append: url %}
|
||||||
|
|
||||||
{%- comment -%} CND URL {%- endcomment -%}
|
{%- comment -%} Prepend CND URL {%- endcomment -%}
|
||||||
{% if site.img_cdn %}
|
{% if site.img_cdn %}
|
||||||
{% assign url = site.img_cdn
|
{% assign url = site.img_cdn | append: '/' | append: url %}
|
||||||
| append: '/'
|
|
||||||
| append: url
|
|
||||||
| replace: '///', '/'
|
|
||||||
| replace: '//', '/'
|
|
||||||
| replace: ':/', '://'
|
|
||||||
%}
|
|
||||||
|
|
||||||
{% unless site.img_cdn contains ':' %}
|
|
||||||
{% if include.absolute %}
|
|
||||||
{% assign url = site.url | append: site.baseurl | append: url %}
|
|
||||||
{% else %}
|
|
||||||
{% assign url = site.baseurl | append: url %}
|
|
||||||
{% endif %}
|
|
||||||
{% endunless %}
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
{% assign url = url | replace: '///', '/' | replace: '//', '/' | replace: ':/', '://' %}
|
||||||
|
|
||||||
|
{% unless url contains '://' %}
|
||||||
|
{% if include.absolute %}
|
||||||
|
{% assign url = site.url | append: site.baseurl | append: url %}
|
||||||
|
{% else %}
|
||||||
|
{% assign url = site.baseurl | append: url %}
|
||||||
|
{% endif %}
|
||||||
|
{% endunless %}
|
||||||
{% endunless %}
|
{% endunless %}
|
||||||
{%- endif -%}
|
{%- endif -%}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue