Compare commits

..

No commits in common. "c6ff8069619cbc6376451111f38355eee0a71b2b" and "9741b77e0137f0092f5b1aae2d083be0a9e68385" have entirely different histories.

2 changed files with 9 additions and 1 deletions

View File

@ -57,6 +57,14 @@ import BaseLayout from '../layouts/BaseLayout.astro';
> - website for visualising the shortest paths between two F1 drivers and
their teammates
</li>
<li>
<a
href="https://cats.maciejpedzi.ch"
target="_blank"
rel="noopener noreferrer">Cats Of Tech</a
> - online album of cats that belong to people in the software development
industry
</li>
</ul>
</section>
</BaseLayout>

View File

@ -13,7 +13,7 @@ export async function GET(context) {
site: context.site,
items: posts.map((post) => ({
...post.data,
link: `/blog/${post.id}/`
link: `/blog/${post.slug}/`
}))
});