sf-static/portfolio/node_modules/pug/examples/mixins/profile.pug
2023-02-28 19:21:07 +01:00

10 lines
131 B
Text

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