-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrss.xml
More file actions
39 lines (39 loc) · 1.89 KB
/
rss.xml
File metadata and controls
39 lines (39 loc) · 1.89 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
37
38
39
---
layout: null
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Diary of Arjun</title>
<description>Adventures and learnings of a programmer, data analyst, guitarist, and cyber security consultant</description>
<subtitle>Adventures and learnings of a programmer, data analyst, guitarist, and cyber security consultant</subtitle>
<link>{{ site.url }}{{ site.baseurl }}/</link>
<atom:link href="{{ "/rss.xml" | prepend: site.baseurl | prepend: site.url }}" rel="self" type="application/rss+xml"/>
<pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
<generator>Jekyll v{{ jekyll.version }}</generator>
{% for post in site.posts %}
<item>
<title>{{ post.full_title | xml_escape }}</title>
<author>Arjun</author>
<description>
<![CDATA[
<img src="{{ site.url }}/assets/images/{{ post.coverImage }}" alt="{{ post.full_title | xml_escape }}" />
{{ post.description | xml_escape }}
]]>
</description>
<summary>{{ post.description | xml_escape }}</summary>
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
<link>{{ post.url | prepend: site.baseurl | prepend: site.url }}</link>
<guid isPermaLink="true">{{ post.url | prepend: site.baseurl | prepend: site.url }}</guid>
{% for tag in post.tags %}
{% if tag=="C&C" %}
<category>CC</category>
{% else %}
<category>{{ tag | xml_escape }}</category>
{% endif %}
{% endfor %}
</item>
{% endfor %}
</channel>
</rss>