pub fn PostCard(_: PostCardProps) -> ElementExpand description
文章卡片组件。
Props:
post:文章数据模型
展示内容包括:
- 封面图(如有,使用 400x300 缩略图,不启用灯箱)
- 文章标题
- 摘要(最多两行)
- 发布日期与标签
交互模型(采用覆盖层链接,避免 <a> 嵌套 <a> 的非法 HTML):
- 整张卡片可点击跳转到文章详情:通过末尾一个绝对定位、铺满卡片的覆盖层
Link实现。 - 标签是独立的
Link,通过relative z-10叠在覆盖层之上,并stop_propagation, 点击标签进入标签详情页而不触发卡片跳转。 - 封面用裸
.blur-img(纯展示,无灯箱),点击走卡片跳转,避免交互歧义。
§Props
For details, see the props struct definition.
post:PostListItem