WIP
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
<!-- Start of FTR-7 -->
|
||||
<footer class="!k-bg-primary k-color-white k-bg-light k-py-6 k-px-2 k-px-sm-4.5 k-px-md-6 k-px-lg-4 k-px-xl-7.5">
|
||||
<p class="!k-mb-0">Copyright © {{ currentYear }} RBJ Software, Inc. All rights reserved.</p>
|
||||
</footer>
|
||||
<!-- End of FTR-7 -->
|
||||
@@ -0,0 +1,3 @@
|
||||
footer {
|
||||
margin-top: auto;
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
import { Component } from '@angular/core';
|
||||
import { CommonModule } from '@angular/common';
|
||||
|
||||
@Component({
|
||||
selector: 'app-footer',
|
||||
standalone: true,
|
||||
imports: [CommonModule],
|
||||
templateUrl: './footer.component.html',
|
||||
styleUrls: ['./footer.component.scss']
|
||||
})
|
||||
export class FooterComponent {
|
||||
public currentYear = new Date().getFullYear();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user