--- layout: null --- <?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> <channel> <title>Chaotikm Video Realses</title> <description>Chaotikm Video Realses</description> <link>{{ site.url }}{{ site.baseurl }}/</link> <atom:link href="{{ "/media.xml" | prepend: site.baseurl | prepend: site.url }}" rel="self" type="application/rss+xml"/> <pubDate>{{ site.time | date_to_rfc822 }}</pubDate> <lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate> <generator>Jekyll v{{ jekyll.version }}</generator> {% assign sorted = site.media | sort: 'release_date' | reverse %} {% capture nowunix %}{{'now' | date: '%s'}}{% endcapture %} {% for video in sorted limit:50%} {% capture releasedate %}{{video.release_date | date: '%s'}}{% endcapture %} {% assign optout = false -%} {% if video.optout and video.optout != '' -%} {% assign optout = true -%} {% endif -%} {% if releasedate < nowunix and optout == false %} <item> {% assign name_before_title = false -%} {% for conf in video.conferences -%} {% for c in site.conferences -%} {% if conf == c.acronym and c.name_before_title -%} {% assign name_before_title = true -%} {% endif -%} {% endfor -%} {% endfor -%} <title>{% if video.persons and name_before_title -%}{{video.persons | join: ", " }}: {% endif -%}{{ video.title | xml_escape }} {% for conf in video.conferences -%} {% for c in site.conferences -%} {% if conf == c.acronym -%} {% if c.ecki -%}[{{c.title| xml_escape}}]{% endif -%} {% endif -%} {% endfor -%} {% endfor -%}</title> <description>{{ video.content | xml_escape }}</description> <pubDate>{{ video.date | date_to_rfc822 }}</pubDate> <link>{{ video.url | prepend: site.baseurl | prepend: site.url }}</link> <guid isPermaLink="true">{{ video.url | prepend: site.baseurl | prepend: site.url }}</guid> </item> {% endif %} {% endfor %} </channel> </rss>