Skip to content

Commit 7a2f779

Browse files
committed
1 parent a12eb7d commit 7a2f779

File tree

3 files changed

+48
-1
lines changed

3 files changed

+48
-1
lines changed

_config.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
markdown: rdiscount
2-
pygments: true
2+
pygments: true
3+
name: Nodeclipse
4+
description: Node.js development in Eclipse
5+
url: http://www.nodeclipse.org

feed.articles.xml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
layout: none
3+
---
4+
<?xml version="1.0" encoding="UTF-8"?>
5+
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
6+
<channel>
7+
<title>{{ site.name }} - Articles</title>
8+
<description>{{ site.description }}</description>
9+
<link>{{ site.url }}</link>
10+
<atom:link href="{{ site.url }}/feed.articles.xml" rel="self" type="application/rss+xml" />
11+
{% for post in site.posts %}
12+
{% unless post.link %}
13+
<item>
14+
<title>{{ post.title }}</title>
15+
<description>{{ post.content | xml_escape }}</description>
16+
<pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
17+
<link>{{ site.url }}{{ post.url }}</link>
18+
<guid isPermaLink="true">{{ site.url }}{{ post.url }}</guid>
19+
</item>
20+
{% endunless %}
21+
{% endfor %}
22+
</channel>
23+
</rss>

feed.category.xml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
layout: none
3+
---
4+
<?xml version="1.0" encoding="UTF-8"?>
5+
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
6+
<channel>
7+
<title>{{ site.name }} - Miscellaneous</title>
8+
<description>Posts categorized as 'miscellaneous'</description>
9+
<link>{{ site.url }}</link>
10+
<atom:link href="{{ site.url }}/feed.category.xml" rel="self" type="application/rss+xml" />
11+
{% for post in site.categories.miscellaneous limit:10 %}
12+
<item>
13+
<title>{{ post.title }}</title>
14+
<description>{{ post.content | xml_escape }}</description>
15+
<pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
16+
<link>{{ site.url }}{{ post.url }}</link>
17+
<guid isPermaLink="true">{{ site.url }}{{ post.url }}</guid>
18+
</item>
19+
{% endfor %}
20+
</channel>
21+
</rss>

0 commit comments

Comments
 (0)