Handlebars.js で以下を実行できるようにしたいのですが、うまくいきませんか?
{{#each questions}}
<p>{{content}}</p>
{{#if user}} display reply button {/if}
{{/each}}
すべての質問を表示したいのですが、ユーザーがログインしていれば返信できます。
ここに私のnodejsコードがあります
router.get('/question', function(req, res){
Question.find({}).then (questions =>{
res.render('question',{questions});
});
});