ngx-retroblog/src/app/home/home.component.html

20 lines
No EOL
789 B
HTML
Executable file

<div class="card margins" *ngFor="let content of contents">
<div class="card-header">
<a class="title" href="./?post={{content.filename}}">{{content.postTitle}}</a>
<div class="timestamp" *ngIf="!!content.timestamp">
<strong>Posted on</strong>&nbsp;{{helperService.parseTimestamp(content.timestamp)}}
</div>
<div class="timestamp" *ngIf="!!content.editedTimestamp">
<strong>Edited on</strong>&nbsp;{{helperService.parseTimestamp(content.editedTimestamp)}}
</div>
</div>
<div class="card-body">
<p class="card-text" [innerHTML]="generateHTML(content.postContent)"></p>
</div>
</div>
<div class="text-center">
<a href="./?page=archives">
<button type="button" class="btn-fat btn margins-sides margin-y">« ARCHIVES »</button>
</a>
</div>