This repository has been archived on 2023-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
universal-statuspage/src/app/app.component.html

24 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>