Files
bstlboard-front/src/app/pages/entry/entry.page.html
T
2021-10-05 08:41:38 +02:00

12 lines
423 B
HTML

<div class="container">
<page-notfound *ngIf="notfound"></page-notfound>
<ng-container *ngIf="entry">
<ui-entry [entry]="entry" [change]="boundRefresh"></ui-entry>
<p class="text">{{entry.text}}</p>
<ui-commentform [target]="entry.id" (replyCommentEvent)="replyCallback($event)"></ui-commentform>
<ui-comments #comments [target]="entry.id" [subcomments]="true"></ui-comments>
</ng-container>
</div>