diff options
author | Valentin Popov <info@valentineus.link> | 2018-05-15 14:33:05 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2018-05-15 14:33:05 +0300 |
commit | e8189ad97ef502076d8a275734b687bfbedfd09c (patch) | |
tree | 2c1d7800e5e0f0cc0cd2b8f9bb6870c278e5102a /_pages/atom.xml | |
parent | 70ce3d517d17f261e99e69ad55238c41d783b854 (diff) | |
download | popov.link-e8189ad97ef502076d8a275734b687bfbedfd09c.tar.xz popov.link-e8189ad97ef502076d8a275734b687bfbedfd09c.zip |
Recycling information about the author
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to '_pages/atom.xml')
-rw-r--r-- | _pages/atom.xml | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/_pages/atom.xml b/_pages/atom.xml index 79cd5e1..d149c67 100644 --- a/_pages/atom.xml +++ b/_pages/atom.xml @@ -1,6 +1,8 @@ --- permalink: "atom.xml" layout: compress +title: "RSS" +show: true --- <?xml version="1.0" encoding="utf-8"?> @@ -19,9 +21,9 @@ layout: compress <!-- Author --> <author> - <email>{{ site.data.author_info.email | strip_newlines | strip_html | strip | normalize_whitespace | xml_escape }}</email> - <name>{{ site.data.author_info.name | strip_newlines | strip_html | strip | normalize_whitespace | xml_escape }}</name> - <uri>{{ site.data.author_info.url | strip_newlines | strip_html | strip | normalize_whitespace | xml_escape }}</uri> + <email>{{ site.author.email | strip_newlines | strip_html | strip | normalize_whitespace | xml_escape }}</email> + <name>{{ site.author.name | strip_newlines | strip_html | strip | normalize_whitespace | xml_escape }}</name> + <uri>{{ site.author.url | strip_newlines | strip_html | strip | normalize_whitespace | xml_escape }}</uri> </author> {% for item in site.posts %} @@ -39,9 +41,9 @@ layout: compress <!-- Author --> <author> - <email>{{ site.data.author_info.email | strip_newlines | strip_html | strip | normalize_whitespace | xml_escape }}</email> - <name>{{ site.data.author_info.name | strip_newlines | strip_html | strip | normalize_whitespace | xml_escape }}</name> - <uri>{{ site.data.author_info.url | strip_newlines | strip_html | strip | normalize_whitespace | xml_escape }}</uri> + <email>{{ site.author.email | strip_newlines | strip_html | strip | normalize_whitespace | xml_escape }}</email> + <name>{{ site.author.name | strip_newlines | strip_html | strip | normalize_whitespace | xml_escape }}</name> + <uri>{{ site.author.url | strip_newlines | strip_html | strip | normalize_whitespace | xml_escape }}</uri> </author> <!-- Content --> |