feat(cms): add static pages module

This commit is contained in:
sdarbinyan
2026-07-10 13:52:01 +04:00
parent e2c8747fcc
commit 7d6c09a346
25 changed files with 890 additions and 159 deletions

View File

@@ -14,7 +14,11 @@
<ul>
@for (item of group.items; track item.id) {
<li>
<a [routerLink]="item.route | langRoute">{{ item.label | translate }}</a>
@if (item.external) {
<a [href]="item.route" target="_blank" rel="noopener">{{ item.label | translate }}</a>
} @else {
<a [routerLink]="item.route | langRoute">{{ item.label | translate }}</a>
}
</li>
}
</ul>