Personal website https://benkurtovic.com/
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

34 lines
1.3 KiB

  1. ---
  2. ---
  3. <?xml version="1.0" encoding="UTF-8"?>
  4. <feed xmlns="http://www.w3.org/2005/Atom">
  5. <id>{{ site.url }}</id>
  6. <title>Ben Kurtovic</title>
  7. <updated>{{ site.time | date_to_xmlschema }}</updated>
  8. <link href="{{ site.url }}/"/>
  9. <link rel="self" type="application/atom+xml" href="/atom.xml"/>
  10. <author>
  11. <name>Ben Kurtovic</name>
  12. <email>ben@benkurtovic.com</email>
  13. <uri>https://benkurtovic.com/</uri>
  14. </author>
  15. <icon>/static/favicon.png</icon>
  16. <rights>© 2011–{{ site.time | date: "%Y" }} Ben Kurtovic</rights>
  17. {% for post in site.posts %}
  18. <entry>
  19. <id>{{ site.url }}{{ post.id }}</id>
  20. <title>{{ post.title | xml_escape }}</title>
  21. <updated>{{ post.date | date_to_xmlschema }}</updated>
  22. <published>{{ post.date | date_to_xmlschema }}</published>
  23. <link rel="alternate" type="text/html" href="{{ post.url }}"/>
  24. <author>
  25. <name>Ben Kurtovic</name>
  26. <email>ben@benkurtovic.com</email>
  27. <uri>https://benkurtovic.com/</uri>
  28. </author>
  29. <summary>{{ post.description }}</summary>
  30. <content type="html">{{ post.content | xml_escape }}</content>
  31. </entry>
  32. {% endfor %}
  33. </feed>