Merge pull request 'add hour and minute to timestamp' (#2) from add-timestamp-time into main

This commit was merged in pull request #2.
This commit is contained in:
2026-03-13 16:56:43 +01:00

View File

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