2022-03-02 17:01:17 +00:00
|
|
|
- dir = @site.data.dig(params[:locale], 'dir')
|
2024-04-19 18:06:56 +00:00
|
|
|
|
2020-06-25 20:15:43 +00:00
|
|
|
.row.justify-content-center
|
|
|
|
.col-md-8
|
2020-07-22 23:37:26 +00:00
|
|
|
%article.content.table-responsive-md
|
2024-01-17 20:37:02 +00:00
|
|
|
= link_to t('posts.edit_post'),
|
2019-08-14 21:19:01 +00:00
|
|
|
edit_site_post_path(@site, @post.id),
|
2024-01-12 17:11:29 +00:00
|
|
|
class: 'btn btn-secondary btn-block'
|
2020-11-26 16:24:03 +00:00
|
|
|
|
2024-04-19 18:06:56 +00:00
|
|
|
= render 'table', dir: dir, site: @site, locale: @locale, post: @post, title: t('.front_matter')
|