12 lines
423 B
HTML
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> |