diff options
author | Choom | 2022-12-19 04:07:15 -0300 |
---|---|---|
committer | Choom | 2022-12-20 01:12:19 -0300 |
commit | bf739f69d56825b846a732e45dd5752ba84a3e5e (patch) | |
tree | 434493eaca7786cc8e55885b7473d025e4c05567 /cgi/templates/home.rss | |
parent | e8a9779a6909e8e9bb5206f122d876c556b803a2 (diff) | |
download | weabot-bf739f69d56825b846a732e45dd5752ba84a3e5e.tar.gz weabot-bf739f69d56825b846a732e45dd5752ba84a3e5e.tar.xz weabot-bf739f69d56825b846a732e45dd5752ba84a3e5e.zip |
Fix rss
Diffstat (limited to 'cgi/templates/home.rss')
-rw-r--r-- | cgi/templates/home.rss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cgi/templates/home.rss b/cgi/templates/home.rss index dc69377..d293861 100644 --- a/cgi/templates/home.rss +++ b/cgi/templates/home.rss @@ -15,10 +15,10 @@ </image>
<?py for post in posts: ?>
<item>
- <title>${post['board_name']}: #{post['content']}</title>
+ <title>${post['board_fulln']}: #{post['content']}</title>
<pubDate>${post['timestamp_formatted']}</pubDate>
<link>https://bienvenidoainternet.org#{post['url']}</link>
</item>
<?py #endfor ?>
</channel>
-</rss>
\ No newline at end of file +</rss>
|