19 lines
375 B
XML
19 lines
375 B
XML
#{
|
|
set page(width: 6in, height: 4in, margin: 0em)
|
|
|
|
import "common.typ"
|
|
|
|
let options = json("cache/options.json")
|
|
let cards = options.cards
|
|
let args = options.args
|
|
|
|
let content_fn = common.get_content_fn(args)
|
|
|
|
for (idx, card) in cards.enumerate() {
|
|
if idx != 0 {
|
|
pagebreak()
|
|
}
|
|
common.postcard_content(100%, 100%, content_fn, args, card)
|
|
}
|
|
}
|