Release 2025-05-19

This commit is contained in:
pluja
2025-05-19 10:23:36 +00:00
parent 2657f936bc
commit 565e9a0ad1
267 changed files with 49417 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
---
import { omit } from 'lodash-es'
import { formatDateShort, type FormatDateShortOptions } from '../lib/timeAgo'
import type { HTMLAttributes } from 'astro/types'
type Props = FormatDateShortOptions &
Omit<HTMLAttributes<'time'>, keyof FormatDateShortOptions | 'datetime'> & {
date: Date
}
const { date, ...props } = Astro.props
---
<time datetime={date.toISOString()} {...omit(props, 'prefix')}>{formatDateShort(date, props)}</time>