pleroma/lib/pleroma/web/templates/feed/feed/_tag_activity.xml.eex

15 lines
520 B
Elixir
Raw Normal View History

2019-12-17 20:13:45 +01:00
<item>
<title><%= activity_title(@data, Keyword.get(@feed_config, :post_title, %{})) %></title>
2019-12-17 20:13:45 +01:00
<guid isPermalink="true"><%= activity_context(@activity) %></guid>
<link><%= activity_context(@activity) %></link>
<pubDate><%= to_rfc2822(@data["published"]) %></pubDate>
<description><%= activity_description(@data) %></description>
2019-12-17 20:13:45 +01:00
<%= for attachment <- @data["attachment"] || [] do %>
<enclosure url="<%= attachment_href(attachment) %>" type="<%= attachment_type(attachment) %>"/>
<% end %>
</item>