forked from LaconicNetwork/kompose
Add new kompose site (#1475)
Adds the new kompose site and moves it to the /docs folder so that it's compatible with old links as well as gh-pages
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
---
|
||||
layout: null
|
||||
---
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>{{ site.title | xml_escape }}</title>
|
||||
<description>{{ site.description | xml_escape }}</description>
|
||||
<link>{{ site.url }}{{ site.baseurl }}/</link>
|
||||
<atom:link href="{{ "/feed.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 doc in site.docs limit:10 %}
|
||||
<item>
|
||||
<title>{{ doc.title | xml_escape }}</title>
|
||||
<description>{{ doc.content | xml_escape }}</description>
|
||||
<pubDate>{{ doc.date | date_to_rfc822 }}</pubDate>
|
||||
<link>{{ doc.url | prepend: site.baseurl | prepend: site.url }}</link>
|
||||
<guid isPermaLink="true">{{ doc.url | prepend: site.baseurl | prepend: site.url }}</guid>
|
||||
</item>
|
||||
{% endfor %}
|
||||
</channel>
|
||||
</rss>
|
||||
Reference in New Issue
Block a user