add hour, minute, and UTC+0 to timestamp

This commit is contained in:
2026-03-13 15:50:35 +00:00
parent b55e26eb04
commit 6918f9b5c3

View File

@@ -62,8 +62,8 @@
</section>
<footer>
<p>Last updated: <span id="updated"></span></p>
<script>document.getElementById('updated').textContent = new Date().toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' });</script>
<p>Last updated: <span id="updated"></span> (UTC+0)</p>
<script>document.getElementById('updated').textContent = new Date().toISOString().replace('T', ' ').substring(0, 16);</script>
</footer>
</main>
</body>