2017-04-27 05:05:29 +08:00
|
|
|
<script type="text/ng-template" id="comment-list-item.html">
|
|
|
|
@include('comments/list-item')
|
|
|
|
</script>
|
|
|
|
<script type="text/ng-template" id="comment-reply.html">
|
2017-05-16 03:10:14 +08:00
|
|
|
@include('comments/comment-reply', ['pageId' => $pageId])
|
2017-04-27 05:05:29 +08:00
|
|
|
</script>
|
2017-05-30 11:32:47 +08:00
|
|
|
<div ng-controller="CommentListController as vm" ng-init="pageId = <?= $page->id ?>" class="comments-list" ng-cloak>
|
2017-04-27 05:05:29 +08:00
|
|
|
<h3>@{{vm.totalCommentsStr}}</h3>
|
2017-05-30 11:32:47 +08:00
|
|
|
<hr>
|
|
|
|
<div class="comment-box" ng-repeat="comment in vm.comments track by comment.id">
|
2017-04-27 05:05:29 +08:00
|
|
|
<div ng-include src="'comment-list-item.html'">
|
2017-05-30 11:32:47 +08:00
|
|
|
|
2017-04-27 05:05:29 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-05-30 11:32:47 +08:00
|
|
|
@include('comments/comment-reply', ['pageId' => $pageId])
|
|
|
|
</div>
|