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
|
|
|
@site.name,
|
|
|
|
link_to(t('posts.index'), site_posts_path(@site)),
|
|
|
|
@post.title.value]
|
2018-02-05 17:27:12 +00:00
|
|
|
|
2020-05-23 18:42:12 +00:00
|
|
|
- dir = t("locales.#{@locale}.dir")
|
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
|
2019-08-14 21:19:01 +00:00
|
|
|
= link_to t('posts.edit'),
|
|
|
|
edit_site_post_path(@site, @post.id),
|
2019-09-12 16:55:20 +00:00
|
|
|
class: 'btn btn-block'
|
2020-11-26 16:24:03 +00:00
|
|
|
|
2021-04-07 20:46:37 +00:00
|
|
|
- unless @post.layout.ignored?
|
|
|
|
= link_to t('posts.preview.btn'),
|
|
|
|
site_post_preview_path(@site, @post.id),
|
|
|
|
class: 'btn btn-block',
|
|
|
|
target: '_blank',
|
|
|
|
rel: 'noopener'
|
2018-01-30 15:20:19 +00:00
|
|
|
|
2020-07-22 23:37:26 +00:00
|
|
|
%table.table.table-condensed
|
2019-08-14 21:19:01 +00:00
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th.text-center{ colspan: 2 }= t('.front_matter')
|
|
|
|
%tbody
|
2019-08-23 18:29:07 +00:00
|
|
|
- @post.attributes.each do |attr|
|
2020-08-05 15:29:11 +00:00
|
|
|
- metadata = @post[attr]
|
2019-08-23 18:29:07 +00:00
|
|
|
- next unless metadata.front_matter?
|
2018-01-31 20:29:27 +00:00
|
|
|
|
2020-11-11 20:00:09 +00:00
|
|
|
- cache metadata do
|
|
|
|
= render("posts/attribute_ro/#{metadata.type}",
|
|
|
|
post: @post, attribute: attr,
|
|
|
|
metadata: metadata,
|
|
|
|
site: @site,
|
|
|
|
tags: all_html_tags,
|
|
|
|
locale: @locale,
|
|
|
|
dir: dir)
|
2018-01-30 15:20:19 +00:00
|
|
|
|
2019-08-14 21:19:01 +00:00
|
|
|
-# Mostrar todo lo que no va en el front_matter (el contenido)
|
|
|
|
- @post.attributes.each do |attr|
|
2020-11-11 22:49:44 +00:00
|
|
|
- metadata = @post[attr]
|
2020-11-11 20:00:09 +00:00
|
|
|
- next if metadata.front_matter?
|
2019-08-14 21:19:01 +00:00
|
|
|
|
2020-11-11 20:00:09 +00:00
|
|
|
- cache metadata do
|
2020-11-17 23:46:55 +00:00
|
|
|
%section.editor{ id: attr, dir: dir }
|
2020-11-11 20:00:09 +00:00
|
|
|
= @post.public_send(attr).to_s.html_safe
|