tangled
alpha
login
or
join now
bwc9876.dev
/
website
0
fork
atom
Files for my website
bwc9876.dev
0
fork
atom
overview
issues
pulls
pipelines
comma instead of bullet for tags
bwc9876.dev
4 days ago
408aa027
fd8b30c9
verified
This commit was signed with the committer's
known signature
.
bwc9876.dev
SSH Key Fingerprint:
SHA256:DanMEP/RNlSC7pAVbnXO6wzQV00rqyKj053tz4uH5gQ=
+3
-3
2 changed files
expand all
collapse all
unified
split
src
components
projects
ProjectCard.astro
pages
projects
[...slug].astro
+1
-1
src/components/projects/ProjectCard.astro
···
46
46
</div>
47
47
<div>
48
48
<h3 class="project-name">{project.data.name}</h3>
49
49
-
<small>{project.data.tags.join(" • ")}</small>
49
49
+
<small>{project.data.tags.join(", ")}</small>
50
50
<p>{project.data.summary}</p>
51
51
</div>
52
52
</article>
+2
-2
src/pages/projects/[...slug].astro
···
30
30
<div class="project-header">
31
31
<h1 class="gradient-text">{entry.data.name}</h1>
32
32
<p>
33
33
-
{entry.data.timespan.from}{entry.data.timespan.to && <> - {entry.data.timespan.to}</>} •
34
34
-
{entry.data.tags.join(" • ")}
33
33
+
{entry.data.timespan.from}{entry.data.timespan.to && <> - {entry.data.timespan.to}</>},
34
34
+
{entry.data.tags.join(", ")}
35
35
</p>
36
36
</div>
37
37
<p>{entry.data.summary}</p>