diff --git a/_includes/archive-single.html b/_includes/archive-single.html index 60b63f91..a3f5272e 100644 --- a/_includes/archive-single.html +++ b/_includes/archive-single.html @@ -16,7 +16,7 @@ {% if include.type == "grid" and teaser != blank %}
- {% if author.avatar contains "http" %} + {% if author.avatar contains "://" %} {{ author.name }} {% else %} {{ author.name }} diff --git a/_includes/feature_row b/_includes/feature_row index 798ac44e..10592b7e 100644 --- a/_includes/feature_row +++ b/_includes/feature_row @@ -10,7 +10,7 @@ {% for f in feature_row %} - {% if f.url contains "http" %} + {% if f.url contains "://" %} {% capture f_url %}{{ f.url }}{% endcapture %} {% else %} {% capture f_url %}{{ f.url | prepend: base_path }}{% endcapture %} @@ -21,7 +21,7 @@ {% if f.image_path %}
{% else %} {% if nav.url %} {% comment %}internal/external URL check{% endcomment %} - {% if nav.url contains "http" %} + {% if nav.url contains "://" %} {% assign domain = "" %} {% else %} {% assign domain = base_path %} @@ -23,7 +23,7 @@
    {% for child in nav.children %} {% comment %}internal/external URL check{% endcomment %} - {% if child.url contains "http" %} + {% if child.url contains "://" %} {% assign domain = "" %} {% else %} {% assign domain = base_path %} @@ -43,6 +43,4 @@ {% endfor %}
- - - + \ No newline at end of file diff --git a/_includes/page__hero.html b/_includes/page__hero.html index bdbf130b..6cc1ee7e 100644 --- a/_includes/page__hero.html +++ b/_includes/page__hero.html @@ -1,18 +1,18 @@ {% include base_path %} -{% if page.header.image contains "http" %} +{% if page.header.image contains "://" %} {% capture img_path %}{{ page.header.image }}{% endcapture %} {% else %} {% capture img_path %}{{ page.header.image | prepend: "/images/" | prepend: base_path }}{% endcapture %} {% endif %} -{% if page.header.cta_url contains "http" %} +{% if page.header.cta_url contains "://" %} {% capture cta_path %}{{ page.header.cta_url }}{% endcapture %} {% else %} {% capture cta_path %}{{ page.header.cta_url | prepend: base_path }}{% endcapture %} {% endif %} -{% if page.header.overlay_image contains "http" %} +{% if page.header.overlay_image contains "://" %} {% capture overlay_img_path %}{{ page.header.overlay_image }}{% endcapture %} {% elsif page.header.overlay_image %} {% capture overlay_img_path %}{{ page.header.overlay_image | prepend: "/images/" | prepend: base_path }}{% endcapture %} @@ -52,4 +52,4 @@ {% if page.header.caption %} {{ page.header.caption | markdownify | remove: "

" | remove: "

" }}
{% endif %} -
+
\ No newline at end of file diff --git a/_includes/seo.html b/_includes/seo.html index f914ce36..8073725a 100644 --- a/_includes/seo.html +++ b/_includes/seo.html @@ -60,7 +60,7 @@ {% if page.header.image %} - + {% else %} {% if site.og_image %} @@ -84,7 +84,7 @@ {% endif %} {% if page.header.image %} - + {% endif %} {% if page.date %} diff --git a/_includes/sidebar.html b/_includes/sidebar.html index 445dd207..b8ee39ab 100644 --- a/_includes/sidebar.html +++ b/_includes/sidebar.html @@ -7,7 +7,7 @@ {% for s in page.sidebar %} {% if s.image %}