Compare commits

...

2 Commits

2 changed files with 1 additions and 9 deletions

View File

@ -57,14 +57,6 @@ import BaseLayout from '../layouts/BaseLayout.astro';
> - website for visualising the shortest paths between two F1 drivers and > - website for visualising the shortest paths between two F1 drivers and
their teammates their teammates
</li> </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> </ul>
</section> </section>
</BaseLayout> </BaseLayout>

View File

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