1
include yslt.yml2
2
3
stylesheet {
4
template "/" html {
5
head title "Customer List";
6
body apply "list";
7
}
8
9
template "list" table apply "customer[starts-with(name, 'Kurt')]";
10
11
template "customer" tr {
12
td value "id";
13
td value "name";
14
15