1 <script type="text/ng-template" id="comment-list-item.html">
2 @include('comments/list-item')
4 <script type="text/ng-template" id="comment-reply.html">
5 @include('comments/comment-reply', ['pageId' => $pageId])
7 <div ng-controller="CommentListController as vm" ng-init="pageId = <?= $page->id ?>" class="comments-list" ng-cloak>
8 <h3>@{{vm.totalCommentsStr}}</h3>
10 <div class="comment-box" ng-repeat="comment in vm.comments track by comment.id">
11 <div ng-include src="'comment-list-item.html'">
15 <div ng-if="::vm.canComment()">
16 @include('comments/comment-reply', ['pageId' => $pageId])