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

11 lines
131 B
Plaintext
Raw Normal View History

2017-12-22 17:22:08 +00:00
mixin pets(pets)
ul.pets
each pet in pets
li= pet
mixin profile(user)
.user
h2= user.name
+pets(user.pets)