review-front/src/app/home/home.component.html
2024-12-26 23:33:30 +01:00

13 lines
412 B
HTML

<app-header></app-header>
<div class="main-content">
@for (post of posts; track post.id) {
<app-post-home [illustration]="post.illustration"
[date]="post.publicationDate"
[postId]="post.id"
[category]="post.category"
[title]="post.title"
[username]="'Guams'"
[description]="post.description" />
}
</div>