This repository was archived by the owner on Oct 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeed.xml
More file actions
executable file
·33 lines (32 loc) · 1.46 KB
/
Copy pathfeed.xml
File metadata and controls
executable file
·33 lines (32 loc) · 1.46 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
---
layout: nil
title : Atom Feed
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<link rel="hub" href="https://theyashagarwal.me" />
<link href="https://theyashagarwal.me/"/>
<link type="application/atom+xml" rel="self" href="https://theyashagarwal.me/atom.xml"/>
<title type="text" xml:lang="en">{{ site.name }}</title>
<updated>{{ site.time | date_to_xmlschema" }}</updated>
<id>{{ site.baseurl }}/</id>
<author>
<name>{{ site.author.name }}</name>
<email>{{ site.author.email }}</email>
</author>
<rights type="text">Copyright © {{ site.time | date: "%Y" }} {{ site.author.name }}. All rights reserved.</rights>
{% for post in site.posts %}
<entry>
<title>{{ post.title | xml_escape }}</title>
<link rel="alternate" type="text/html" href="{{ site.baseurl }}{{ post.url }}/?utm_source=RSS&utm_medium=RSS&utm_campaign={{ post.title | replace: ',','' | replace: ' ', '' | xml_escape }}" />
<published>{{ post.date | date: "%Y-%m-%dT%H:%M:%SZ" }}</published>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>{{ site.baseurl }}{{ post.id }}</id>
<author>
<name>{{ site.author.name }}</name>
<email>{{ site.author.email }}</email>
</author>
<content type="html">{{ post.content | xml_escape }}</content>
</entry>
{% endfor %}
</feed>