mirror of https://github.com/istio/istio.io.git
40 lines
1.2 KiB
XML
40 lines
1.2 KiB
XML
---
|
|
layout: null
|
|
---
|
|
{%- assign root = "https://istio.io" -%}
|
|
<?xml version="1.0"?>
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
<channel>
|
|
<title>Istio Blog</title>
|
|
<description>An open platform to connect, manage, and secure microservices.</description>
|
|
<pubDate>{{ site.time | date_to_xmlschema }}</pubDate>
|
|
<link>{{root}}</link>
|
|
<image>
|
|
<url>{{root}}/favicons/android-192x192.png</url>
|
|
<link>{{root}}</link>
|
|
</image>
|
|
|
|
{%- assign sorted = site.blog | sort: "url" -%}
|
|
{%- for post in sorted -%}
|
|
{%- if post.draft == true -%}
|
|
{%- continue -%}
|
|
{%- endif -%}
|
|
|
|
{%- assign path = post.url | split: "/" -%}
|
|
{%- assign name = path | last -%}
|
|
{%- if name == "index.html" -%}
|
|
{%- continue -%}
|
|
{% endif %}
|
|
|
|
<item>
|
|
<title>{{ post.title | xml_escape }}</title>
|
|
<description>{{ post.overview | xml_escape }}</description>
|
|
<pubDate>{{ post.publish_date | date_to_xmlschema }}</pubDate>
|
|
<link>{{root}}{{ post.url }}</link>
|
|
<author>{{ post.attribution }}</author>
|
|
<guid isPermaLink="true">{{root}}{{ post.url }}</guid>
|
|
</item>
|
|
{%- endfor -%}
|
|
</channel>
|
|
</rss>
|