Compare commits

..

1 Commits

Author SHA1 Message Date
6918f9b5c3 add hour, minute, and UTC+0 to timestamp 2026-03-13 15:53:01 +00:00

View File

@@ -62,8 +62,8 @@
</section>
<footer>
<p>Last updated: <span id="updated"></span></p>
<script>document.getElementById('updated').textContent = new Date().toLocaleString('en-US', { year: 'numeric', month: 'long', day: 'numeric', hour: '2-digit', minute: '2-digit' });</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>