5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-08 15:45:46 +00:00
panel/app/views/posts/index.haml

18 lines
364 B
Plaintext
Raw Normal View History

.row
.col
%h1= @site.name
2018-01-29 22:19:10 +00:00
.row
.col
= link_to t('posts.new'), new_site_post_path(@site),
class: 'btn btn-success'
.row
.col
%table.table.table-condensed.table-striped
%tbody
- @site.posts.each do |post|
%tr
%td= link_to post.title, site_post_path(@site, post)
%td= post.date.strftime('%F')