mirror of
https://github.com/Fluffy-Bean/website.git
synced 2025-01-14 10:35:14 +00:00
Im gonna explode
This commit is contained in:
parent
06199deff2
commit
526c6e26e1
|
@ -10,9 +10,7 @@ const { frontmatter } = Astro.props;
|
|||
<p>By {frontmatter.author}</p>
|
||||
|
||||
<ul id="tags">
|
||||
{frontmatter.tags.map(item => (
|
||||
<li class="pill">#{item}</li>
|
||||
))}
|
||||
{frontmatter.tags.map((item: string) => ( <li class="pill">#{item}</li> ))}
|
||||
</ul>
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -21,9 +21,7 @@ const { post } = Astro.props;
|
|||
<h1>{post.data.title}</h1>
|
||||
<p>{post.data.description}</p>
|
||||
<ul id="tags">
|
||||
{post.data.tags.map(item => (
|
||||
<li class="pill">#{item}</li>
|
||||
))}
|
||||
{post.data.tags.map((item: string) => ( <li class="pill">#{item}</li> ))}
|
||||
</ul>
|
||||
<hr>
|
||||
|
||||
|
|
|
@ -22,9 +22,7 @@ const { project } = Astro.props;
|
|||
<h1>{project.data.title}</h1>
|
||||
<p>{project.data.description}</p>
|
||||
<ul id="tags">
|
||||
{project.data.tags.map(item => (
|
||||
<li class="pill">#{item}</li>
|
||||
))}
|
||||
{project.data.tags.map((item: string) => ( <li class="pill">#{item}</li> ))}
|
||||
</ul>
|
||||
<hr>
|
||||
|
||||
|
|
Loading…
Reference in a new issue