metamaps--metamaps/app/views/notifications/index.html.erb

19 lines
477 B
Text
Raw Normal View History

2016-11-17 04:04:30 +00:00
<% content_for :title, 'Notifications | Metamaps' %>
<% content_for :mobile_title, 'Notifications' %>
<div id="yield">
<div class="centerContent">
<h4>Notifications</h4>
<ul>
<% @notifications.each do |notification| %>
<li>
<strong>
<%= link_to notification.subject, notification_path(notification.id) %>
</strong>
<%= notification.body.truncate(140) %>
</li>
<% end %>
</ul>
</div>
</div>