sf-static/portfolio/node_modules/pug/examples/mixins/profile.pug

11 lines
131 B
Text
Raw Normal View History

2023-02-28 18:21:07 +00:00
mixin pets(pets)
ul.pets
each pet in pets
li= pet
mixin profile(user)
.user
h2= user.name
+pets(user.pets)