aboutsummaryrefslogtreecommitdiff
path: root/src/components/PostElement.astro
blob: 2f98130434c6b5b785659d033ff8f52534ca0689 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
import { type CollectionEntry } from "astro:content";
import dayjs from "dayjs";

type Props = {
	readonly post: CollectionEntry<"blog">;
};

const { post } = Astro.props;
---

<style lang="scss">
	@import "../scss/_variables.scss";

	/* Post */
	.post {
		padding-bottom: 3rem;
	}

	.link {
		color: $colorText;
	}

	/* Meta */
	.meta {
		padding-bottom: 1.5rem;
	}

	.date {
		opacity: 0.5;
	}

	.tag {
		display: none;
	}
</style>

<article class="post">
	<h2><a class="link" href={`/blog/${post.slug}`}>{post.data.title}</a></h2>
	<div class="meta">
		<time class="date" datetime={post.data.pubDate.toISOString()}>
			{dayjs(post.data.pubDate.toString()).format("YYYY-MM-DD")}
		</time>
		<ul class="tag">
			<li><a href="#">tag1</a></li>
			<li><a href="#">tag2</a></li>
		</ul>
	</div>
	<p>{post.data.description}</p>
	<a href={`/blog/${post.slug}`}>Read More</a>
</article>