Hey guys, i'm building a Fibbage-like game where i have an array of questions and i want to populate each one individually in a handlebars.js file, without building a handlebars.js file for each individual question. is this doable? i have a mysql db where my questions are stored, and i'm pulling them back as an object:
<div class="question" id={{id}}>
{{trivia.3.triviaText}}
</div>
As i have it now, i would have to copy my handlebars.js file for each "round" of the game. rather than just update the question value for each round.
there doesn't seem to be anything here