Files
website/node_modules/@astrojs/starlight/components/LastUpdated.astro
2024-05-06 17:15:30 -04:00

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>
)
}