hugo-soresu

My fork of hugo-xmin

git clone git://git.shimmy1996.com/hugo-soresu.git
commit 307a0a9153e55e86954f4e7b8726cc92c172e19e
parent d023e3b56011d349703373540dff5cf7e50beb85
Author: Yihui Xie <xie@yihui.name>
Date:   Fri, 16 Jun 2017 22:54:36 -0500

rename copyright to footer, since the variable copyright is used in the RSS feed

Diffstat:
MexampleSite/config.toml | 2+-
MexampleSite/content/about.md | 4++--
Mlayouts/partials/footer.html | 2+-
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
@@ -33,4 +33,4 @@ footnotereturnlinkcontents = "↩"
 
 [params]
     description = "A website built through Hugo and blogdown."
-    copyright = "&copy; [Yihui Xie](https://yihui.name) 2017 | [Github](https://github.com/yihui) | [Twitter](https://twitter.com/xieyihui)"
+    footer = "&copy; [Yihui Xie](https://yihui.name) 2017 | [Github](https://github.com/yihui) | [Twitter](https://twitter.com/xieyihui)"
diff --git a/exampleSite/content/about.md b/exampleSite/content/about.md
@@ -43,11 +43,11 @@ You can define the menu through `menu.main`, e.g.,
 
 Alternatively, you can add `menu: main` to the YAML metadata of any of your pages, so that these pages will appear in the menu.
 
-The page footer can be defined in `.Params.copyright`, and the text is treated as Markdown, e.g.,
+The page footer can be defined in `.Params.footer`, and the text is treated as Markdown, e.g.,
 
 ```
 [params]
-    copyright = "&copy; [Yihui Xie](https://yihui.name) 2017"
+    footer = "&copy; [Yihui Xie](https://yihui.name) 2017"
 ```
 
 # Custom layouts
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
@@ -1,6 +1,6 @@
   <footer>
   {{ partial "foot_custom.html" . }}
-  {{ with .Site.Params.copyright }}
+  {{ with .Site.Params.footer }}
   <hr/>
   {{ . | markdownify }}
   {{ end }}