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

github.com/salsysd/hugo-assembly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--exampleSite/config.toml2
-rw-r--r--layouts/partials/footer.html2
-rw-r--r--layouts/partials/menu.html2
3 files changed, 3 insertions, 3 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index acddfa6..0b9e71f 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -67,7 +67,7 @@ title = "Assembly"
# Footer section
[params.footer]
enable = true
- copy = "© Assembly Inc | All rights reserved."
+ copy = "2018 © Assembly Inc. | All rights reserved"
twitter = ""
facebook = ""
instagram = ""
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index 2f1d3fd..d92e32f 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -1,5 +1,5 @@
{{ if .Site.Params.footer.enable }}
<div id="copyright" class="container">
- <p>{{ with .Site.Params.footer.copy }}{{ . | markdownify }}{{ end }}<</p>
+ <p>{{ with .Site.Params.footer.copy }}{{ . | markdownify }}{{ end }}</p>
</div>
{{ end }}
diff --git a/layouts/partials/menu.html b/layouts/partials/menu.html
index c5b153f..a5b2302 100644
--- a/layouts/partials/menu.html
+++ b/layouts/partials/menu.html
@@ -10,7 +10,7 @@
<li><a href="#welcome" accesskey="3" title="">{{ with .Site.Params.nav.welcome }}{{ . | markdownify }}{{ end }}</a></li>
{{ end }}
{{ if .Site.Params.contact.enable }}
- <li><a href="#contact" accesskey="4" title="">{{ with .Site.Params.nav.contact }}{{ . | markdownify }}{{ end }}</a></li>
+ <li><a href="#copyright" accesskey="4" title="">{{ with .Site.Params.nav.contact }}{{ . | markdownify }}{{ end }}</a></li>
{{ end }}
</ul>
</div>