Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

186
Views
How do I write this pug function in handlebars?

Can someone tell me how I can write the following pug code in handlebars code?

ul
      for product in products
          li #{product.product}
          li #{product.price}

I found the following code, but I have to populate two points per iteration. So I don't know how to implement that.

handlebars.registerHelper('list', function(n, block) {
    var accum = '';
    for(n in block)
        accum1 += block.fn(n);
    return accum;
});

Thanks.

about 4 years ago · Santiago Trujillo
1 answers
Answer question

0

Try this

<ul>
{{#each products}}
   <li>{{product}}</li>
   <li>{{price}}</li>
{{/each}}
</ul>
about 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!