23 lines
700 B
HTML
23 lines
700 B
HTML
<div class="box">
|
|
<header class="container pt-4">
|
|
<h1 *ngIf="title && title.length">{{title}}</h1>
|
|
<h3 *ngIf="description && description.length">{{description}}</h3>
|
|
</header>
|
|
|
|
<main class="container">
|
|
<router-outlet></router-outlet>
|
|
</main>
|
|
|
|
<footer>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-12 col-sm-6">
|
|
Powered by <a href="https://git.sp-codes.de/samuel-p/universal-statuspage">universal-statuspage</a>
|
|
</div>
|
|
<div class="col-12 col-sm-6 text-sm-right">
|
|
Made with <span class="fas fa-heart"></span> by <a href="https://sp-codes.de">sp-codes</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</div>
|