I have the following json object:
var partners =[{ "name":"partnerx", "image": "imagex" }, { "name": "partnery", "image": "imagey" }]
I want to put into a ul object using jade and I tried:
ul#slides.swiper-wrapper
mixin partners(name, image)
li.swiper-slide
img(src=#{image} , alt=#{name})
This is not working.
Try this:
ul#slides.swiper-wrapper
each partner in partners
li.swiper-slide
img(src=partner.image, alt=partner.name)
https://pugjs.org/language/iteration.html
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With