certainlyakey
6/23/2014 - 12:02 PM

Iterate 3 values and more with each in Jade

Iterate 3 values and more with each in Jade

- var articles = {'Heading text': {tag:'important', location:'New York'}}
each article, heading in articles
	article
		h1 #{heading}
		a.tag(href='') #{article.tag}
		span.location #{article.location}