rename copyright to footer, since the variable copyright is used in the RSS feed
authorYihui Xie <xie@yihui.name>
Sat, 17 Jun 2017 03:54:36 +0000 (22:54 -0500)
committerYihui Xie <xie@yihui.name>
Sat, 17 Jun 2017 03:54:36 +0000 (22:54 -0500)
exampleSite/config.toml
exampleSite/content/about.md
layouts/partials/footer.html

index e262bb79fb961e5394c234508d48263c45d5fa6b..2c6497a7d8661e14b0730001a57d33baa2d69c5a 100644 (file)
@@ -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)"
index 393d5ee01aed61d3660bcd15009d7ca1b70c54fc..949c9a8ed6fb63a974281254adf44c9f83f9b0f5 100644 (file)
@@ -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
index a1993aa85b9c603e3c33b9520a6d387d07183702..3f46ea54770d6fcd34ff70871f75a555365dfe57 100644 (file)
@@ -1,6 +1,6 @@
   <footer>
   {{ partial "foot_custom.html" . }}
-  {{ with .Site.Params.copyright }}
+  {{ with .Site.Params.footer }}
   <hr/>
   {{ . | markdownify }}
   {{ end }}