13 lines
412 B
HTML
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>
|