21 lines
365 B
Plaintext
21 lines
365 B
Plaintext
|
#{
|
||
|
set page(width: 3.5in, height: 1.125in, margin: 0em)
|
||
|
|
||
|
import "common.typ"
|
||
|
|
||
|
let options = json("cache/options.json")
|
||
|
let cards = options.cards
|
||
|
|
||
|
for (idx, card) in cards.enumerate() {
|
||
|
if idx != 0 {
|
||
|
pagebreak()
|
||
|
}
|
||
|
place(
|
||
|
top + left,
|
||
|
dx: 1in/4,
|
||
|
dy: 0in,
|
||
|
common.address_block(2in + 3in/4, 15in/16, card)
|
||
|
)
|
||
|
}
|
||
|
}
|