From 54cee4a89bbd449588f2d8e94bd8d8cb119e0bea Mon Sep 17 00:00:00 2001 From: Randy Brito Date: Fri, 21 Mar 2014 18:11:21 +0100 Subject: [PATCH] Remove slash from splash image URL Remove slash from splash image URL as if it is an external URL it would have it if needed and if it is an image in the local directories it can't end in an ```slash``` --- _layouts/blog.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_layouts/blog.html b/_layouts/blog.html index 04488343f..596c8f6c9 100644 --- a/_layouts/blog.html +++ b/_layouts/blog.html @@ -7,7 +7,7 @@ {% if page.splash contains 'http' %} {% capture url %}{{page.splash}}{% endcapture %} {% else %} - {% capture url %}{{site.baseurl}}{{page.splash}}/{% endcapture %} + {% capture url %}{{site.baseurl}}{{page.splash}}{% endcapture %} {% endif %}