mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 07:26:52 +00:00
51 lines
2.4 KiB
JavaScript
51 lines
2.4 KiB
JavaScript
import BLOG from '@/blog.config'
|
|
import Link from 'next/link'
|
|
import CONFIG_SIMPLE from '../config_simple'
|
|
import TwikooCommentCount from '@/components/TwikooCommentCount'
|
|
|
|
export const BlogItem = props => {
|
|
const { post } = props
|
|
|
|
return <div key={post.id} className="h-42 my-6 pb-12 border-b dark:border-gray-800" >
|
|
{/* 文章标题 */}
|
|
|
|
<h2 className="mb-2">
|
|
<Link
|
|
href={`${post.slug}`}
|
|
className="blog-item-title font-bold text-black text-2xl no-underline hover:underline">
|
|
{post.title}
|
|
</Link>
|
|
</h2>
|
|
|
|
{/* 文章信息 */}
|
|
|
|
<div className="mb-5 text-md text-gray-700 dark:text-gray-300 flex-wrap flex leading-6">
|
|
<div className='space-x-2'>
|
|
<span> <a href={CONFIG_SIMPLE.AUTHOR_LINK} className='p-1 hover:text-red-400 transition-all duration-200'><i className="fa-regular fa-user"></i> {BLOG.AUTHOR}</a></span>
|
|
<span>
|
|
<Link className='p-1 hover:text-red-400 transition-all duration-200' href={`/archive#${post?.date?.start_date?.substr(0, 7)}`}>
|
|
<i className="fa-regular fa-clock" /> {post.date?.start_date || post.createdTime}
|
|
</Link>
|
|
</span>
|
|
<span><TwikooCommentCount post={post} /></span>
|
|
</div>
|
|
|
|
<div>
|
|
{post.category && <Link href={`/category/${post.category}`} className='p-1'> <span className="hover:text-red-400 transition-all duration-200"><i className="fa-regular fa-folder mr-0.5"/>{post.category}</span></Link>}
|
|
{post.tags && post.tags?.length > 0 && post.tags.map(t => <Link key={t} href={`/tag/${t}`} className=' hover:text-red-400 transition-all duration-200'><span > /{t}</span></Link>)}
|
|
</div>
|
|
</div>
|
|
|
|
<div className="text-gray-700 dark:text-gray-300 leading-normal mb-6">
|
|
{post.summary}
|
|
{post.summary && <span>...</span>}
|
|
</div>
|
|
|
|
<div className='block'>
|
|
<Link href={`${post.slug}`} className='inline-block rounded-sm text-blue-600 text-xs dark:border-gray-800 border hover:text-red-400 transition-all duration-200 hover:border-red-300 h-9 leading-8 px-5'>
|
|
Continue Reading <i className="fa-solid fa-angle-right align-middle"></i>
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
}
|