-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathfeed.xml
More file actions
36 lines (36 loc) · 1.5 KB
/
feed.xml
File metadata and controls
36 lines (36 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
# Copyright 2025 seL4 Project a Series of LF Projects, LLC.
# SPDX-License-Identifier: CC-BY-SA-4.0
layout: null
---
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>{{ "seL4 News" | xml_escape }}</title>
<author>
<name>seL4 Foundation</name>
</author>
<logo>{{ "/images/seL4.svg" | relative_url }}</logo>
<icon>{{ "/images/seL4.svg" | relative_url }}</icon>
<id>{{ site.url }}{{ site.baseurl }}/</id>
<description>News feed about seL4, the seL4 Foundation, and the seL4 ecosystem.</description>
<link rel="alternate">{{ site.url }}{{ site.baseurl }}/news/</link>
<link rel="self">{{ site.url }}{{ site.baseurl }}/feed.xml</link>
{%- assign last_item = site.news-items | last %}
<updated>{{ last_item.date | date_to_rfc822 }}</updated>
{%- assign items = site.news-items | reverse %}
{%- for item in items limit:10 %}
{%- assign item_year = item.date | date: "%Y" %}
{%- assign item_link = "/news/" | append: item_year | append: ".html#" | append: item.anchor %}
<rights>Copyright {{ "now" | date: "%Y" }} seL4 Foundation</rights>
<entry>
<title>{{ item.title | xml_escape }}</title>
<link rel="alternate" type="text/html" href="{{ item_link | absolute_url }}"/>
<id>{{ item_link | absolute_url }}</id>
<published>{{ item.date | date_to_rfc822 }}</published>
<updated>{{ item.date | date_to_rfc822 }}</updated>
<content type="html">
{{ item.content | xml_escape }}
</content>
</entry>
{%- endfor %}
</feed>