paperless-ngx/src-ui/src/app/components/common/page-header/page-header.component.html

10 lines
372 B
HTML
Raw Normal View History

<div class="row pt-3 pb-3 pb-md-1 mb-3 border-bottom align-items-center">
2020-11-22 16:33:26 +01:00
<div class="col-md text-truncate">
<p class="h2 text-truncate" style="line-height: 1.4">{{title}}</p>
<p *ngIf="subTitle" class="h5 text-truncate" style="line-height: 1.4">{{subTitle}}</p>
2020-11-04 21:18:16 +01:00
</div>
<div class="btn-toolbar col col-md-auto">
2020-10-27 01:10:18 +01:00
<ng-content></ng-content>
</div>
2020-11-04 21:18:16 +01:00
</div>