We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 033aa4a commit 81a2f70Copy full SHA for 81a2f70
src/pages/software/[slug].astro
@@ -50,15 +50,15 @@ const metaData = {
50
</div>
51
<div>
52
<div class="flex items-center gap-2 mb-4 flex-wrap">
53
- <a href={"/software?category=" + entry.data.Category}>
+ <a href={"/software/?category=" + entry.data.Category}>
54
<span
55
class="text-blue-600 dark:text-blue-400 cursor-pointer bg-blue-100 dark:bg-blue-500/15 py-1 px-3 rounded-full text-sm">
56
{entry.data.Category}
57
</span>
58
</a>
59
{
60
entry.data.Tags.slice(0, 5).map((tag) => (
61
- <a href={`/software?tag=${tag}`}>
+ <a href={`/software/?tag=${tag}`}>
62
<Badge variant="secondary">{tag}</Badge>
63
64
))
0 commit comments