File size: 840 Bytes
40559c4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
30
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
	<title>Explorable AI</title>
	<link>https://pair.withgoogle.com/explorables</link>
	<description>Big ideas in machine learning, simply explained</description>
	<image>
		<title>roadtolarissa</title>
		<link>https://pair.withgoogle.com/explorables</link>
	</image>
	${d.filter(post => post.draft != 'true').reverse().map(post => 
		`
		<item>
			<title>${post.title}</title>
			${post.shareimg ? `
				<description>
					<![CDATA[
						<a href="https://pair.withgoogle.com/explorables${post.permalink}">
							<img src="${post.shareimg}"/>
						</a>
					]]>
				</description>
			` : ''}
			<link>https://pair.withgoogle.com/explorables${post.permalink}</link>
			<pubDate>${(new Date(post.date)).toUTCString()}</pubDate>
		</item>
		`
	).join('')}
</channel>
</rss>