mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-17 09:36:23 +00:00
22 lines
561 B
Text
22 lines
561 B
Text
|
%main.row
|
||
|
%aside.menu.col-md-3
|
||
|
%h1= @site.title
|
||
|
%p.lead= @site.description
|
||
|
.col
|
||
|
%h1= t('.title')
|
||
|
|
||
|
%table.table
|
||
|
%thead
|
||
|
%tr
|
||
|
- @headers.each do |header|
|
||
|
%th{ scope: 'col' }= header
|
||
|
%tbody
|
||
|
- @table.each do |row|
|
||
|
- row[:urls].each do |url|
|
||
|
%tr
|
||
|
%th{ scope: 'row' }= row[:title]
|
||
|
%td= link_to_if url.present?, url, url
|
||
|
%td
|
||
|
%time{ datetime: row[:seconds][:machine] }= row[:seconds][:human]
|
||
|
%td= row[:size]
|