File: atom.xml

package info (click to toggle)
leaflet 1.4.0~dfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 19,000 kB
  • sloc: sh: 26; makefile: 24; xml: 23
file content (29 lines) | stat: -rw-r--r-- 735 bytes parent folder | download | duplicates (3)
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
---
title: Leaflet Developer Blog Atom Feed
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">

	<title>Leaflet Dev Blog</title>

	<link href="https://leafletjs.com/atom.xml" rel="self"/>
	<link href="https://leafletjs.com"/>

	<updated>{{ site.time | date_to_xmlschema }}</updated>
	<id>https://leafletjs.com/</id>

	<author>
		<name>Vladimir Agafonkin</name>
	</author>

	{% for post in site.posts %}
	<entry>
		<title>{{ post.title }}</title>
		<link href="https://leafletjs.com{{ post.url }}"/>
		<updated>{{ post.date | date_to_xmlschema }}</updated>
		<id>https://leafletjs.com{{ post.id }}</id>
		<content type="html">{{ post.content | xml_escape }}</content>
	</entry>
	{% endfor %}

</feed>