5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-10-02 02:06:57 +00:00
panel/app/views/posts/edit.haml

11 lines
402 B
Text
Raw Normal View History

2019-09-04 16:50:27 +00:00
= render 'layouts/breadcrumb',
2019-09-12 16:57:25 +00:00
crumbs: [link_to(t('sites.index.title'), sites_path),
2019-09-04 16:50:27 +00:00
link_to(@site.name, site_posts_path(@site)),
link_to(t('posts.index'), site_posts_path(@site)),
link_to(@post.title.value, site_post_path(@site, @post.id)),
t('posts.edit')]
2018-02-05 17:27:12 +00:00
2019-01-09 20:52:02 +00:00
.row.justify-content-center
2018-12-14 13:38:19 +00:00
.col-md-8
2019-08-16 23:12:22 +00:00
= render 'posts/form', site: @site, post: @post