mirror of
https://github.com/element-hq/synapse.git
synced 2025-03-31 03:45:13 +00:00
Merge 1ee22e27b4
into 3c188231c7
This commit is contained in:
commit
0d7b493a8d
2 changed files with 8 additions and 1 deletions
1
changelog.d/17328.feature
Normal file
1
changelog.d/17328.feature
Normal file
|
@ -0,0 +1 @@
|
|||
Dynamically update the year in the footer.
|
|
@ -15,5 +15,11 @@
|
|||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<p>An open network for secure, decentralized communication.<br>© 2023 The Matrix.org Foundation C.I.C.</p>
|
||||
<p>An open network for secure, decentralized communication.<br>© <span id="currentyear">2024</span> The Matrix.org Foundation C.I.C.</p>
|
||||
</footer>
|
||||
<script>
|
||||
if (typeof document !== 'undefined' && document.getElementById) {
|
||||
var currentYear = new Date().getFullYear();
|
||||
document.getElementById('currentyear').textContent = currentYear;
|
||||
}
|
||||
</script>
|
||||
|
|
Loading…
Add table
Reference in a new issue