I want to display in my template only the first element of an array. I've seen many topics including this one but it doesn't work in my case.
I have an helper like this:
Template.home.helpers({
posts() {
return Posts.find({});
}
});
I would like to do something like this in my template:
{{posts.[0].title}}
I don't want to use a findOne in this case.