Spaces:
Running
Running
| <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> |