capnproto

FORK: Cap'n Proto serialization/RPC system - core tools and C++ library
git clone https://git.neptards.moe/neptards/capnproto.git
Log | Files | Refs | README | LICENSE

feed.xml (771B)


      1 ---
      2 layout: none
      3 ---
      4 
      5 <?xml version="1.0" encoding="UTF-8"?>
      6 <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
      7 	<channel>
      8 		<title>Cap'n Proto News</title>
      9 		<description>Latest updates on Cap'n Proto</description>
     10 		<link>https://capnproto.org</link>
     11 		<atom:link href="{{ site.baseurl }}feed.xml" rel="self" type="application/rss+xml" />
     12 		{% for post in site.posts limit:10 %}
     13 			<item>
     14 				<title>{{ post.title | xml_escape }}</title>
     15 				<description>{{ post.content | xml_escape }}</description>
     16 				<pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
     17                                 <link>{{ post.url }}</link>
     18                                 <guid isPermaLink="true">{{ post.url }}</guid>
     19 			</item>
     20 		{% endfor %}
     21 	</channel>
     22 </rss>