Orbit/vendor/plugins/NewBlog/app/views/panel/blog/posts/widget_index.html.erb

16 lines
360 B
Plaintext
Raw Normal View History

<%=stylesheet_link_tag "NewBlog/application"%>
2011-10-20 09:19:35 +00:00
<div class="widget_index">
<table>
<tr>
<th><%= t('blog.title') %></th>
<th><%= t('blog.body') %></th>
</tr>
2011-10-20 09:19:35 +00:00
<% @posts.each do |post| %>
<tr>
<td><%= link_to post.title,panel_blog_post_path(post) %></td>
<td><%= post.body.truncate(14) %></td>
</tr>
<% end %>
</table>
</div>