Added project accordion next will be more content

This commit is contained in:
2025-12-13 13:57:49 +01:00
parent 8c011dd0ab
commit 17585bfaca
7 changed files with 136 additions and 38 deletions

View File

@@ -1,6 +1,14 @@
<div class="wip">
<div class="dots">
<span></span><span></span><span></span>
</div>
<p>Work in progress…</p>
</div>
<mat-accordion class="project-headers-align" multi>
@for (project of allProjects; track project.title) {
<mat-expansion-panel>
<mat-expansion-panel-header>
<mat-panel-title>{{ project.title | translate }}</mat-panel-title>
<mat-panel-description>
{{ project.shortDescription | translate}}
<mat-icon>{{ project.icon }}</mat-icon>
</mat-panel-description>
</mat-expansion-panel-header>
</mat-expansion-panel>
}
</mat-accordion>