Skip to content

Commit

Permalink
add a little bit more data to the feed (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
riastrad authored Jul 16, 2024
1 parent 3ed6053 commit 78eac2f
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions feed.njk
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,14 @@ permalink: /feed.xml
{% for post in postslist | reverse %}
<item>
<title>{{ post.data.title }}</title>
<link>https://cyberb.space{{ post.url | url }}</link>
<guid>https://cyberb.space{{ post.url | url }}</guid>
<pubDate>{{ post.date | rssDate }}</pubDate>
<link>https://cyberb.space{{ post.url | url }}</link>
<guid>https://cyberb.space{{ post.url | url }}</guid>
<pubDate>{{ post.date | rssDate }}</pubDate>
<author>
<name>{{ metadata.author.name }}</name>
<uri>https://cyberb.space</uri>
</author>
<summary>{{ post.data.summary }}</summary>
<content type="html">{{ post.content }}</content>
</item>
{% endfor %}

0 comments on commit 78eac2f

Please sign in to comment.