mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
43 lines
1.3 KiB
Text
43 lines
1.3 KiB
Text
<%- site_link = raw(@markdown_linker.create(@site_name, '/')) %>
|
|
<%= raw(t 'user_notifications.digest.why',
|
|
site_link: site_link,
|
|
last_seen_at: @last_seen_at) %>
|
|
|
|
<%- if @featured_topics.present? %>
|
|
### <%=t 'user_notifications.digest.top_topics' %>
|
|
|
|
<%- @featured_topics.each do |t| %>
|
|
<%= raw(@markdown_linker.create(t.title, t.relative_url)) %>
|
|
|
|
<%- if t.best_post.present? %>
|
|
<div class='digest-post'><%= raw(t.best_post.excerpt(1000,
|
|
strip_links: true,
|
|
text_entities: true,
|
|
markdown_images: true)) %></div>
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
<%- end %>
|
|
|
|
<%- end %>
|
|
<%- end %>
|
|
|
|
<%- if @new_topics.present? %>
|
|
**<%=t 'user_notifications.digest.other_new_topics' %>**
|
|
|
|
<%- @new_topics.each do |t| %>
|
|
* <%= raw(@markdown_linker.create(t.title, t.relative_url)) %> <%- if t.category %>[<%= t.category.name %>]<%- end %>
|
|
<%- end -%>
|
|
|
|
<%- end -%>
|
|
|
|
|
|
|
|
<%= raw(@markdown_linker.references) %>
|
|
|
|
<span class='footer-notice'><%=raw(t :'user_notifications.digest.unsubscribe',
|
|
site_link: site_link,
|
|
unsubscribe_link: raw(@markdown_linker.create(t('user_notifications.digest.click_here'), email_unsubscribe_path(key: @user.temporary_key)))) %></span>
|
|
|
|
<%= raw(@markdown_linker.references) %>
|
|
|