25 lines
689 B
Text
25 lines
689 B
Text
|
|
Archive of Our Own
|
|
=========================================
|
|
|
|
|
|
<% if content_for?(:message) then %><%= yield(:message) %><% end %>
|
|
|
|
|
|
-----------------------------------------
|
|
<% if content_for?(:footer_note) %>
|
|
<%= yield(:footer_note) %>
|
|
|
|
<% end %>
|
|
<% if @pac_footer %>
|
|
<%= t("mailer.general.footer.why_policy_abuse.text", contact_policy_abuse_url: new_abuse_report_url) %>
|
|
<% else %>
|
|
<%= t("mailer.general.footer.why_support.text", contact_support_url: new_feedback_report_url) %>
|
|
<% end %>
|
|
|
|
<%= t("mailer.general.footer.about.text", your_donations_url: donate_url) %>
|
|
<% if content_for?(:sent_at) %>
|
|
|
|
<%= t("mailer.general.footer.sent_at", sent_at: yield(:sent_at).strip) %>
|
|
|
|
<% end %>
|