From 17b5095d5ab7c98ce0e5b32a00add32f4e59a047 Mon Sep 17 00:00:00 2001 From: Yihui Xie Date: Tue, 14 Jun 2022 23:06:12 -0500 Subject: document {Year} in footer --- exampleSite/content/about.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/exampleSite/content/about.md b/exampleSite/content/about.md index eab0811..050e4dc 100644 --- a/exampleSite/content/about.md +++ b/exampleSite/content/about.md @@ -44,9 +44,11 @@ The page footer can be defined in `.Params.footer`, and the text is treated as M ``` params: - footer: "© [Yihui Xie](https://yihui.org) 2017 -- 2021" + footer: "© [Yihui Xie](https://yihui.org) 2017 -- {Year}" ``` +Here `{Year}` means the year in which the site is built (usually the current year). + # Custom layouts There are two layout files under `layouts/partials/` that you may want to override: `head_custom.html` and `foot_custom.html`. This is how you inject arbitrary HTML code to the head and foot areas. For example, this site has a file `layouts/partials/foot_custom.html` to support LaTeX math via MathJax and center images automatically: -- cgit