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 18:49:11 +0300
committerGitHub <noreply@github.com>2018-10-25 18:49:11 +0300
commit760891ceb7957a905ac3af3efa76a5ca46de69c8 (patch)
tree949ffd45dae2ad3674ae91d47960e9769276d06d /layouts
parent26e4a96cfa635ee15ed86b65a516daf8379424ff (diff)
parentce2f570fc5f84680fec65178a5f595a5272e5b85 (diff)
Merge branch 'master' into 21-broken-div-in-404-html
Diffstat (limited to 'layouts')
-rw-r--r--layouts/404.html2
-rw-r--r--layouts/partials/header.html2
-rw-r--r--layouts/partials/social.html10
3 files changed, 12 insertions, 2 deletions
diff --git a/layouts/404.html b/layouts/404.html
index f160774..0a58c13 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 f6c390c..fa0018f 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" . }}
diff --git a/layouts/partials/social.html b/layouts/partials/social.html
index 53d98ff..cf9a08a 100644
--- a/layouts/partials/social.html
+++ b/layouts/partials/social.html
@@ -35,6 +35,16 @@
<a class="glyph" alt="Keybase profile" href="https://keybase.io/{{ .Site.Params.KeybaseUser }}"><img src="{{ .Site.BaseURL }}icons/keybase.svg" height="24px" width="24px"></a>
</div>
{{ end }}
+ {{ if isset .Site.Params "linkedinuser" }}
+ <div class="icon-24x24">
+ <a class="glyph" alt="LinkedIn profile" href="https://www.linkedin.com/in/{{ .Site.Params.LinkedInUser }}"><img src="{{ .Site.BaseURL }}icons/linkedin.svg" height="24px" width="24px"></a>
+ </div>
+ {{ end }}
+ {{ if isset .Site.Params "mediumuser" }}
+ <div class="icon-24x24">
+ <a class="glyph" alt="Medium profile" href="https://medium.com/{{ .Site.Params.MediumUser }}"><img src="{{ .Site.BaseURL }}icons/medium.svg" height="24px" width="24px"></a>
+ </div>
+ {{ end }}
{{ if isset .Site.Params "microbloguser" }}
<div class="icon-24x24">
<a class="glyph" alt="Micro.Blog profile" href="https://micro.blog/{{ .Site.Params.MicroBlogUser }}"><img src="{{ .Site.BaseURL }}icons/microblog.svg" height="24px" width="24px"></a>