profile.pug 131 octets
Newer Older

mixin pets(pets)
  ul.pets
    each pet in pets
      li= pet

mixin profile(user)
  .user
    h2= user.name
    +pets(user.pets)