Im trying to get data from my feed into the product list.
I succeeded in doing this on the product page, but it was because the cshtml of most of the page was not in a template.
It is different in the product list "ProductRender.cshtml", here everything is inside templates.
Inside <script id="ProductContainer" type="text/x-template"> I try to add a reference to my feed like this.
<div id="BlogArticlesContainer" class="js-handlebars-root" data-template="BlogArticles" data-json-feed="@blogFeedPageUrl" data-pre-render-template="ProductPreRenderContainer" data-preloader="overlay"></div>
It did not work, so I found out I had to do it like this {{>BlogArticles}} and I get one step further. Now my template is used, but I get no data, because the feed is not initialized in {{>BlogArticles}}.
How can I get data from my feeds using this partial approach, without having to integrate my feed with the existing product list feed?