Files
profile-front/src/components/NewsSingle.astro

24 lines
414 B
Plaintext
Raw Normal View History

2026-01-19 16:28:24 +03:00
---
interface Props {
2026-01-22 00:00:07 +03:00
post: any;
2026-01-19 16:28:24 +03:00
pageInfo?: any;
}
2026-01-22 00:00:07 +03:00
const { post, pageInfo } = Astro.props;
2026-01-19 16:28:24 +03:00
---
{post ? (
<article class="news-single">
<h1>{post.title}</h1>
<div class="meta">
{post.date && <time>{new Date(post.date).toLocaleDateString('ru-RU')}</time>}
</div>
{post.content && <div set:html={post.content} />}
</article>
) : (
<div>Новость не найдена</div>
)}