Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/AngeloStavrow/indigo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngelo Stavrow <contact@angelostavrow.com>2018-10-25 12:21:13 +0300
committerGitHub <noreply@github.com>2018-10-25 12:21:13 +0300
commit0d6690f95dcd933ad0436aafbd9f577ec6138dab (patch)
tree44a0dd958f22ac938479090396283e5b183a74cf /layouts
parent9221fc31aa7b9b8ee03f34405e4243d9ad2d3a7d (diff)
parent846115c354ddc09e9ee61efc7f6c67c6b797bf2c (diff)
Fix site-logo link (closes #34)
Remove extra `/` in site logo source at header.
Diffstat (limited to 'layouts')
-rw-r--r--layouts/404.html2
-rw-r--r--layouts/partials/header.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/layouts/404.html b/layouts/404.html
index 003c64a..fa59383 100644
--- a/layouts/404.html
+++ b/layouts/404.html
@@ -3,7 +3,7 @@
{{ partial "head.html" . }}
<body>
<div id="sitelogo">
- <a class="glyph" alt="Home" href="{{ .Site.BaseURL }}"><img src="{{ .Site.BaseURL }}/images/site-logo.svg" alt="Site Logo" height="64px" width="64px"></a>
+ <a class="glyph" alt="Home" href="{{ .Site.BaseURL }}"><img src="{{ .Site.BaseURL }}images/site-logo.svg" alt="Site Logo" height="64px" width="64px"></a>
</div>
<header>
{{ partial "pagenav.html" . }}
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index 003f0f6..073a7e5 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -3,7 +3,7 @@
{{ partial "head.html" . }}
<body>
<div id="sitelogo">
- <a class="glyph" alt="Home" href="{{ .Site.BaseURL }}"><img src="{{ .Site.BaseURL }}/images/site-logo.svg" alt="Site Logo" height="64px" width="64px"></a>
+ <a class="glyph" alt="Home" href="{{ .Site.BaseURL }}"><img src="{{ .Site.BaseURL }}images/site-logo.svg" alt="Site Logo" height="64px" width="64px"></a>
</div>
<header>
{{ partial "pagenav.html" . }}