1
0
Fork 0
template_engine_comparison/templates/markaby/big.mab

27 lines
469 B
Plaintext
Raw Normal View History

html {
head {
2013-12-13 21:12:26 +00:00
title 'Customers List'
}
body {
2013-12-14 20:42:15 +00:00
customers.each{ |customer|
dl {
2013-12-13 21:12:26 +00:00
dt 'Name:'
dd customer['name']
dt 'Age:'
dd customer['age']
dt 'Address:'
dd {
2013-12-13 21:12:26 +00:00
[
customer['zip'],
customer['country'],
customer['city'],
customer['address']
].join("\n")
}
2013-12-13 21:12:26 +00:00
dt 'Employer:'
dd customer['employer']
}
}
}
}