23 lines
960 B
XML
23 lines
960 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
<channel>
|
|
<title>Código para llevar</title>
|
|
<link>https://codigoparallevar.com/blog/</link>
|
|
<description>Blog from a programmer adrift.</description>
|
|
<atom:link href="https://codigoparallevar.com/blog/rss.xml" rel="self" type="application/rss+xml"></atom:link>
|
|
<language>en</language>
|
|
<copyright>Contents © 2023 kenkeiras - Creative Commons License 4.0 BY-NC-SA</copyright>
|
|
<lastBuildDate>{{ last_build_date.strftime("%a, %d %b %Y %H:%M:%S %z") }}</lastBuildDate>
|
|
<ttl>3600</ttl>
|
|
|
|
{% for post in posts %}
|
|
<item>
|
|
<title>{{ post.title }}</title>
|
|
<description>{{ post.summary }}</description>
|
|
<link>https://codigoparallevar.com/blog/{{ post.link }}</link>
|
|
<pubDate>{{ post.post_publication_date.strftime("%a, %d %b %Y %H:%M:%S %z") }}</pubDate>
|
|
</item>
|
|
{% endfor %}
|
|
</channel>
|
|
</rss>
|