Files
Cleanuparr/code/frontend/src/app/layout/page-header/page-header.component.html
2026-02-12 17:51:30 +02:00

12 lines
258 B
HTML

<div class="page-header">
<div>
<h1 class="page-header__title">{{ title() }}</h1>
@if (subtitle()) {
<p class="page-header__subtitle">{{ subtitle() }}</p>
}
</div>
<div class="page-header__actions">
<ng-content />
</div>
</div>