Files
blog-astro/src/pages/current-time.astro
T
2024-11-19 21:19:51 -05:00

12 lines
285 B
Plaintext

---
import Layout from "../layouts/Layout.astro";
export const prerender = false;
---
<Layout title="Current Time">
<h1>Current Time</h1>
<p>This page is rendered on the server.</p>
<time datetime={new Date().toISOString()}>
{new Date().toLocaleString()}
</time>
</Layout>