Answer the question
In order to leave comments, you need to log in
Handlebars help?
I'm making my first blog, but I ran into a problem,
Sends posts to the main page
app.get('/', (req,res) => {
PostModel.find((err,doc) => { if(err) throw err;
res.render('index', {posts : doc}); console.log(doc); });
});
<h2>Добро пожаловать на мой блог</h2>
<div class="posts">
{{#each posts}}
{{#each this}}
<h4>{{this.title}}</h4>
<p>{{this._id}}</p>
{{/each}}
{{/each}}
</div>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question