From 90753501541387e5844640fbe1a1a4439c182494 Mon Sep 17 00:00:00 2001
From: alexanderdavide <alexeble1998@gmail.com>
Date: Tue, 25 May 2021 20:19:57 +0000
Subject: [PATCH] Merge branch 'master' into feature/add-favicon-files-info-to-docs

---
 README.md |   27 +++++++++++++++++++++++++--
 1 files changed, 25 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index db6d27f..c878d44 100644
--- a/README.md
+++ b/README.md
@@ -94,10 +94,10 @@
 
 ### Copyright
 
-By default, the copyright will show the current year, but you can change this by configuring the `copyright` parameter.
+By default, the copyright will show the authors name followed by the current year, but you can change this by configuring the `copyright` parameter. If this method is used, the string `{{ YEAR }}` will be replaced with the current year during site generation.
 
 ```toml
-copyright = "2020-2021"
+copyright = "2020-{{ YEAR }}"
 ```
 
 ### Navigation items
@@ -576,6 +576,29 @@
 url = "mailto:mail@example.com"
 ```
 
+### RSS
+
+Hugo natively supports RSS. To generate a feed for a given page, append `index.xml` to the page URL.
+
+Note that the RSS feed at the base of your website will include all of the pages on your website. To only include posts in your RSS feed, generate the feed within the `posts/` subdirectory with the URL `posts/index.xml`.
+
+To only generate an RSS feed for your posts, disable the RSS output for the other page types:
+
+```toml
+[outputs]
+  home = ["HTML"]
+  section = ["HTML", "RSS"]
+  taxonomy = ["HTML"]
+  term = ["HTML"]
+```
+
+By default, the RSS feed contains a brief summary of each page. If you prefer to show the entire contents for each page, then use the `rssFullContent` parameter:
+
+```toml
+[params]
+rssFullContent = true
+```
+
 ## License
 
 Anatole is licensed under the [MIT license](https://github.com/lxndrblz/anatole/blob/master/LICENSE).

--
Gitblit v1.10.0