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

github.com/curttimson/hugo-theme-massively.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCurtis Timson <curt@live.co.uk>2018-02-25 01:56:16 +0300
committerCurtis Timson <curt@live.co.uk>2018-02-25 01:56:16 +0300
commiteace6468baf758d9270387672dd8d0ab9c2036e4 (patch)
treeea9e021e48da06108390d11b224e8df33e585f18 /layouts
parentd0327f4b788dcd1864926d3fc75f6a6e8a6b1ae6 (diff)
:bug: Fix title issues on single
Diffstat (limited to 'layouts')
-rw-r--r--layouts/partials/copyright.html2
-rw-r--r--layouts/partials/header.html2
-rw-r--r--layouts/partials/nav.html2
3 files changed, 3 insertions, 3 deletions
diff --git a/layouts/partials/copyright.html b/layouts/partials/copyright.html
index 58edabe..03a85db 100644
--- a/layouts/partials/copyright.html
+++ b/layouts/partials/copyright.html
@@ -1,4 +1,4 @@
<!-- Copyright -->
<div id="copyright">
- <ul><li>&copy; {{ .Title }}</li><li>Design: <a href="https://html5up.net">HTML5 UP</a></li><li>Hugo Port: <a href="https://curtistimson.co.uk">curttimson</a></li></ul>
+ <ul><li>&copy; {{ .Site.Title }}</li><li>Design: <a href="https://html5up.net">HTML5 UP</a></li><li>Hugo Port: <a href="https://curtistimson.co.uk">curttimson</a></li></ul>
</div> \ No newline at end of file
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index cc30395..94501fd 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -1,4 +1,4 @@
<!-- Header -->
<header id="header">
- <a href="{{ .Site.BaseURL }}" class="logo">{{ .Title }}</a>
+ <a href="{{ .Site.BaseURL }}" class="logo">{{ .Site.Title }}</a>
</header> \ No newline at end of file
diff --git a/layouts/partials/nav.html b/layouts/partials/nav.html
index 994dd9e..16efa35 100644
--- a/layouts/partials/nav.html
+++ b/layouts/partials/nav.html
@@ -1,7 +1,7 @@
<!-- Nav -->
<nav id="nav">
<ul class="links">
- <li class="active"><a href="{{ .Site.BaseURL }}">{{ .Title }}</a></li>
+ <li class="active"><a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a></li>
{{ with .Site.Data.contactinfo }}
<li><a href="{{ .Site.BaseURL }}#footer">Contact</a></li>
{{ end }}