rss.xml 654 B

1234567891011121314151617
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <rss version="2.0">
  3. <channel>
  4. <title>fedi-block-api{% if domain %} {{domain}}{% endif %}</title>
  5. <description>Feed of latest blocks{% if domain %} for {{domain}}{% endif %} from fedi-block-api</description>
  6. <pubDate>{{timestamp}}</pubDate>
  7. <ttl>1800</ttl>
  8. {% for block in blocks %}
  9. <item>
  10. <title>{{block['blocker']}} has applied '{{block['block_level']}}' restriction to {{block['blocked']}}</title>
  11. <description>{{block['reason']}}</description>
  12. <link>https://fba.ryona.agency/?reverse={{block['blocker']}}</link>
  13. <pubDate>{{block['first_added']}}</pubDate>
  14. </item>
  15. {% endfor %}
  16. </channel>
  17. </rss>