summaryrefslogtreecommitdiff
path: root/lib/pleroma/web/templates/feed/feed/_tag_activity.xml.eex
blob: 295574df1c1f5a57ddbb33bc7e0ebe965da3fa20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<item>
  <title><%= activity_title(@object, Keyword.get(@feed_config, :post_title, %{})) %></title>
  
  
  <guid isPermalink="true"><%= activity_context(@activity) %></guid>
  <link><%= activity_context(@activity) %></link>
  <pubDate><%= pub_date(@data["published"]) %></pubDate>
  
  <description><%= activity_content(@object) %></description>
  <%= for attachment <- @data["attachment"] || [] do %>
    <enclosure url="<%= attachment_href(attachment) %>" type="<%= attachment_type(attachment) %>"/>
  <% end %>
  
</item>