Ok I have a service bootstraped in boot.ts and everything is working fine apart from managing to make my template work. I apologize for not being able to express myself in HTML / angular lingo but I believe that my question is rather obvious.
My simplified *ngFor loop currently looks like this.
<div *ngFor="let comment of comments">
<div>{{comment.body}}</div>
</div>
This as expected outputs something like the following
<div>
<div> First comment </div><!-- 1st comment_div closed -->
<div> Second comment </div><!-- 2nd comment_div closed -->
.....
<div> Last comment </div><!-- last comment_div closed
</div>
Instead what I want is the following
<div>
<div> First comment
<div> Second comment
.....
<div> Last comment </div>.....</div></div> <!-- All divs closing here-->
</div>