Files
danbooru/app/views/news_updates/_listing.html.erb
2013-07-13 23:56:02 -04:00

12 lines
417 B
Plaintext

<% cache("news-updates", :expires_in => 1.hour) do %>
<div id="news-updates" data-id="<%= NewsUpdate.recent.first.try(:id) %>" style="display: none;">
<ul>
<% NewsUpdate.recent.each do |news_update| %>
<li><%= news_update.created_at.strftime("%b %d") %>: <%= news_update.message.html_safe %></li>
<% end %>
</ul>
<a href="#" id="close-news-ticker-link">close</a>
</div>
<% end %>