We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34be155 commit bf52925Copy full SHA for bf52925
src/app/core/layout/footer/footer.component.html
@@ -18,5 +18,5 @@
18
</a>
19
</div>
20
<app-theme-toggle />
21
- <p class="copyright">Copyright © Phenotypic Evolution Group 2024</p>
+ <p class="copyright">Copyright © Phenotypic Evolution Group {{ currentYear }}</p>
22
</footer>
src/app/core/layout/footer/footer.component.ts
@@ -9,5 +9,5 @@ import { SvgIconComponent } from 'angular-svg-icon';
9
styleUrl: './footer.component.css'
10
})
11
export class FooterComponent {
12
-
+ readonly currentYear: number = new Date().getFullYear();
13
}
0 commit comments