blog/pages/index.html.skooma.yue

18 lines
511 B
Text

slots, json = select 1, ...
posts = require 'posts'
tags = require 'tags'
post = =>
flexColumn
* h2 a(@head.title, href: @head.uri), style: "view-transition-name: #{@head.slug}"
* tags(@head.tags)
* time is: 'local-date', datetime: @head.date, @head.date
* @head.description
slots.head title "Index"
slots.head script type: 'module', src: "/javascript/LocalDate.js"
slots.head script type: 'module', src: "/javascript/BlogPost.js"
return main
* h1 "Blog Posts"
* [blogPost post p for p in *posts]