Files
danbooru/app/views/news_updates/_listing.html.erb
r888888888 c8f83f1442 fixes #1536
2013-05-07 15:52:14 -07:00

12 lines
394 B
Plaintext

<% cache("news-updates", :expires_in => 1.hour) do %>
<div id="news-updates" data-id="<%= NewsUpdate.recent.first.try(:id) %>">
<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 %>