mirror of
https://github.com/sern-handler/website
synced 2026-06-17 05:12:21 +00:00
17 lines
318 B
Plaintext
17 lines
318 B
Plaintext
---
|
|
import type { Props } from '../props';
|
|
|
|
const { labels, lang, lastUpdated } = Astro.props;
|
|
---
|
|
|
|
{
|
|
lastUpdated && (
|
|
<p>
|
|
{labels['page.lastUpdated']}{' '}
|
|
<time datetime={lastUpdated.toISOString()}>
|
|
{lastUpdated.toLocaleDateString(lang, { dateStyle: 'medium', timeZone: 'UTC' })}
|
|
</time>
|
|
</p>
|
|
)
|
|
}
|