2023-09-25 19:19:21 +00:00
|
|
|
#{
|
|
|
|
set page(width: 3.5in, height: 1.125in, margin: 0em)
|
|
|
|
|
|
|
|
import "common.typ"
|
|
|
|
|
|
|
|
let options = json("options.json")
|
|
|
|
let cards = options.cards
|
|
|
|
|
|
|
|
for (idx, card) in cards.enumerate() {
|
|
|
|
if idx != 0 {
|
|
|
|
pagebreak()
|
|
|
|
}
|
|
|
|
place(
|
|
|
|
top + left,
|
|
|
|
dx: 1in/16,
|
|
|
|
dy: 1in/16,
|
2023-10-31 18:36:36 +00:00
|
|
|
common.address_block(3in, 1in, card)
|
2023-09-25 19:19:21 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|