29 lines
994 B
Plaintext
29 lines
994 B
Plaintext
---
|
|
permalink: /atom.xml
|
|
---
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
<title>Nat's Notebook</title>
|
|
<link href="https://www.nats.solutions/"/>
|
|
<author>
|
|
<name>Nat</name>
|
|
<uri>https://www.nats.solutions</uri>
|
|
</author>
|
|
<link rel="self" href="https://www.nats.solutions/"/>
|
|
<updated>{{ collections.posts.pages[0].published_date | date: "%FT%TZ" }}</updated>
|
|
<id>https://www.nats.solutions</id>
|
|
{% for post in collections.posts.pages %}
|
|
<entry>
|
|
<title>{{ post.title }}</title>
|
|
<link rel="alternate" href="https://www.nats.solutions/{{ post.permalink }}"/>
|
|
<id>https://www.nats.solutions/{{ post.permalink }}</id>
|
|
<updated>{{ post.published_date | date: "%FT%TZ" }}</updated>
|
|
<content src="https://www.nats.solutions/{{ post.permalink }}"></content>
|
|
<summary type="html">
|
|
{{ post.description }}
|
|
</summary>
|
|
<category term="{{ post.categories | join: "/" }}" />
|
|
</entry>
|
|
{% endfor %}
|
|
</feed>
|