mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 23:06:21 +00:00
14 lines
318 B
Text
14 lines
318 B
Text
|
.row
|
||
|
.col-2
|
||
|
= haml :'sites/_nav'
|
||
|
.col-10
|
||
|
%h1= @site.name
|
||
|
|
||
|
%table.table.table-striped
|
||
|
%tbody
|
||
|
- @site.posts.docs.each do |post|
|
||
|
%tr
|
||
|
%td
|
||
|
%a{href: "/sites/#{@site.name}/posts/#{post.basename}"}= post.data['title']
|
||
|
%td= post.date.strftime('%F')
|