pixsy/node_modules/pug/examples/mixins/profile.pug

11 lines
131 B
Plaintext

mixin pets(pets)
ul.pets
each pet in pets
li= pet
mixin profile(user)
.user
h2= user.name
+pets(user.pets)