From 45d72e06f32e3a6e67ce7bf54e7c36b8a825b892 Mon Sep 17 00:00:00 2001 From: dmitrypv Date: Thu, 19 Dec 2019 19:37:11 +0300 Subject: [PATCH] Update masthead.html (#2332) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update masthead.html fix image path in masthead for relative url * Update _includes/masthead.html Co-Authored-By: iBug ♦ --- _includes/masthead.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/masthead.html b/_includes/masthead.html index 3fe9fc1..15be932 100644 --- a/_includes/masthead.html +++ b/_includes/masthead.html @@ -1,7 +1,7 @@ {% if site.logo contains "://" %} {% capture logo_path %}{{ site.logo }}{% endcapture %} {% else %} - {% capture logo_path %}{{ site.logo }}{% endcapture %} + {% capture logo_path %}{{ site.logo | relative_url }}{% endcapture %} {% endif %}
-- 2.43.0