Replace contains "http" with contains "://"

This commit is contained in:
Michael Rose
2016-06-03 15:06:48 -04:00
parent 3e11f72176
commit 0eec6f7611
8 changed files with 17 additions and 19 deletions
+1 -1
View File
@@ -16,7 +16,7 @@
{% if include.type == "grid" and teaser != blank %}
<div class="archive__item-teaser">
<img src=
{% if teaser contains "http" %}
{% if teaser contains "://" %}
"{{ teaser }}"
{% else %}
"{{ teaser | prepend: "/images/" | prepend: base_path }}"