summaryrefslogtreecommitdiff
path: root/lib/pleroma/web/templates/feed/feed/_tag_activity.xml.eex
blob: 2334e24a21715bc8e00ad86d2fca66355553c1cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<item>
  <title><%= activity_title(@data, Keyword.get(@feed_config, :post_title, %{})) %></title>


  <guid isPermalink="true"><%= activity_context(@activity) %></guid>
  <link><%= activity_context(@activity) %></link>
  <pubDate><%= pub_date(@activity.data["published"]) %></pubDate>

  <description><%= activity_content(@data) %></description>
  <%= for attachment <- @data["attachment"] || [] do %>
    <enclosure url="<%= attachment_href(attachment) %>" type="<%= attachment_type(attachment) %>"/>
  <% end %>

</item>