deno.land / x / lume_theme_simple_blog@v0.4.0 / src / feed.xml.njk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"> <title>{{ metas.site }}</title> <subtitle>{{ metas.description }}</subtitle> <link href="{{ url | url(true) }}" rel="self"/> <link href="{{ "/" | url(true) }}"/> {% set lastPage = search.pages() | last %} <updated>{{ lastPage.data.date | date("ATOM") }}</updated> <id>{{ "/" | url(true) }}</id> {%- for post in search.pages("type=post", "date=desc", 10) %} <entry> <title>{{ post.data.title }}</title> <link href="{{ post.data.url | url(true) }}"/> <updated>{{ post.data.date | date("ATOM") }}</updated> <id>{{ post.data.url | url(true) }}</id> {% set content = post.data.excerpt or post.data.content %} <content type="html">{{ content | md | htmlUrl(true) }}</content> </entry> {%- endfor %}</feed>
lume_theme_simple_blog

Version Info

Tagged at
a year ago