diff options
author | EuAndreh <eu@euandre.org> | 2020-10-11 04:38:00 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-10-11 04:38:00 -0300 |
commit | e13260428d9ecc6946fa968e915a7f7e9004e88d (patch) | |
tree | 6698686a7b4a7ace58b8886cfa82e6ecfc596b5c /_includes/feed.atom | |
parent | Add link to public-inbox archive in about page (diff) | |
download | euandre.org-e13260428d9ecc6946fa968e915a7f7e9004e88d.tar.gz euandre.org-e13260428d9ecc6946fa968e915a7f7e9004e88d.tar.xz |
Fix entries filter in _include/feed.atom
Diffstat (limited to '_includes/feed.atom')
-rw-r--r-- | _includes/feed.atom | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_includes/feed.atom b/_includes/feed.atom index 53a0897..c4a0e3d 100644 --- a/_includes/feed.atom +++ b/_includes/feed.atom @@ -12,7 +12,7 @@ <email>{{ site.author.email | xml_escape }}</email> </author> - {% assign entries = include.entries | where:"lang", page.lang | sort: "date" | reverse %} + {% assign entries = include.entries | where:"lang", include.lang | sort: "date" | reverse %} {% for entry in entries %} <entry xml:lang="{{ entry.lang }}"> <title type="html">{{ entry.title | smartify | strip_html | normalize_whitespace | xml_escape }}</title> |