5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-04 16:55:45 +00:00
panel/app/views/posts/show.haml

46 lines
1.5 KiB
Plaintext
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
@site.name,
link_to(t('posts.index'), site_posts_path(@site)),
@post.title.value]
2018-02-05 17:27: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
= link_to t('posts.edit'),
edit_site_post_path(@site, @post.id),
2019-09-12 16:55:20 +00:00
class: 'btn btn-block'
= link_to t('posts.preview'),
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
%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
-# 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?
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