mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 01:21:35 +08:00
25 lines
510 B
Plaintext
25 lines
510 B
Plaintext
<div id='main'>
|
|
<%= render :partial => 'email/post', :locals => {:post => post} %>
|
|
|
|
<% if context_posts.present? %>
|
|
<div class='footer'>
|
|
%{respond_instructions}
|
|
</div>
|
|
<hr>
|
|
<h4 class='.previous-discussion'><%= t "user_notifications.previous_discussion" %></h4>
|
|
|
|
<% context_posts.each do |p| %>
|
|
<%= render :partial => 'email/post', :locals => {:post => p} %>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<hr>
|
|
|
|
<div class='footer'>
|
|
%{respond_instructions}
|
|
</div>
|
|
<div class='footer'>
|
|
%{unsubscribe_link}
|
|
</div>
|
|
</div>
|