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

25 lines
558 B
Plaintext
Raw Normal View History

2018-01-30 15:20:19 +00:00
.row
%h1= @post.title
.content
:markdown
#{@post.content}
%table.table.table-condensed.table-striped
%tbody
- @post.data.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