5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-07 09:25:46 +00:00
panel/app/views/posts/show.haml

32 lines
731 B
Plaintext
Raw Normal View History

2018-01-30 15:20:19 +00:00
.row
.col
%h1= @post.title
2018-01-30 15:20:19 +00:00
.row
.col
= link_to t('posts.edit'), edit_site_post_path(@site, @post),
class: 'btn btn-info'
2018-01-31 20:29:27 +00:00
.row
.col
.content
:markdown
#{@post.content}
2018-01-30 15:20:19 +00:00
%table.table.table-condensed.table-striped
%tbody
- @post.front_matter.each do |key, data|
%tr
%th= key
%td
- if data.respond_to? :each
- data.each do |d|
%span.badge.badge-success= d
- elsif data.respond_to? :content
:markdown
#{data.content}
- elsif data.respond_to? :strftime
= data.strftime('%F')
- else
= data