more atom feed shit
This commit is contained in:
parent
880739165c
commit
aa6cbc1d9b
1 changed files with 6 additions and 11 deletions
17
src/feed.njk
17
src/feed.njk
|
@ -25,21 +25,16 @@ metadata:
|
|||
<name>{{ metadata.author.name }}</name>
|
||||
<email>{{ metadata.author.email }}</email>
|
||||
</author>
|
||||
{%- for post in collections.posts %}
|
||||
{%- set absolutePostUrl %}{{ post.url | url | absoluteUrl(metadata.url) }}{% endset %}
|
||||
{% for post in collections.posts %}
|
||||
{% set absolutePostUrl %}{{ post.url | url | absoluteUrl(metadata.url) }}{% endset %}
|
||||
<entry>
|
||||
<title>{{ post.data.title }}</title>
|
||||
{%- if post.data.link %}
|
||||
<link href="{{ post.data.link }}"/>
|
||||
{%- else %}
|
||||
<link href="{{ absolutePostUrl }}"/>
|
||||
{%- endif %}
|
||||
{% if post.data.description %}<summary>{{ post.data.description }}</summary>{% endif %}
|
||||
{% if post.data.link %}<link href="{{ post.data.link }}"/>{% else %}<link href="{{ absolutePostUrl }}"/>{% endif %}
|
||||
<updated>{{ post.date | dateToRfc3339 }}</updated>
|
||||
<id>{{ absolutePostUrl }}</id>
|
||||
<content:encoded type="html"><![CDATA[{{ post.templateContent | safe | htmlToAbsoluteUrls(absolutePostUrl) | safe }}]]></content:encoded>
|
||||
{%- if post.data.feature_image %}
|
||||
<media:content url="{{ post.data.feature_image | url | absoluteUrl(metadata.url) }}" type="image/jpeg" expression="full"></media:content>
|
||||
{%- endif %}
|
||||
{% if post.data.feature_image %}<media:content url="{{ post.data.feature_image | url | absoluteUrl(metadata.url) }}" type="image/jpeg" expression="full"></media:content>{% endif %}
|
||||
</entry>
|
||||
{%- endfor %}
|
||||
{% endfor %}
|
||||
</feed>
|
||||
|
|
Loading…
Reference in a new issue