Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

feed.xml 1.3 KB

You have to be logged in to leave a comment. Sign In
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
31
32
  1. ---
  2. search: exclude
  3. layout: none
  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>{{ site.title | xml_escape }}</title>
  9. <description>{{ site.description | xml_escape }}</description>
  10. <link>{{ site.url }}/</link>
  11. <atom:link href="{{ "/feed.xml" | prepend: site.url }}" rel="self" type="application/rss+xml"/>
  12. <pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
  13. <lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
  14. <generator>Jekyll v{{ jekyll.version }}</generator>
  15. {% for post in site.posts limit:10 %}
  16. <item>
  17. <title>{{ post.title | xml_escape }}</title>
  18. <description>{{ post.content | xml_escape }}</description>
  19. <pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
  20. <link>{{ post.url | prepend: site.url }}</link>
  21. <guid isPermaLink="true">{{ post.url | prepend: site.url }}</guid>
  22. {% for tag in post.tags %}
  23. <category>{{ tag | xml_escape }}</category>
  24. {% endfor %}
  25. {% for tag in page.tags %}
  26. <category>{{ cat | xml_escape }}</category>
  27. {% endfor %}
  28. </item>
  29. {% endfor %}
  30. </channel>
  31. </rss>
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...