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 1ec461f commit f3ce0fbCopy full SHA for f3ce0fb
src/pages/tags/index.astro
@@ -1,5 +1,6 @@
1
---
2
import { BaseLayout } from '@/components/layouts'
3
+import { PageTitle } from '@/components/ui'
4
import { Tag } from '@/features/posts/components'
5
import { getAllTags } from '@/features/posts/lib'
6
@@ -24,11 +25,9 @@ const allTags = await getAllTags()
24
25
}
26
</style>
27
-<BaseLayout
28
- title="Tags"
29
- pageTitle="All Tags"
30
- description="All tags used on this site"
31
->
+<BaseLayout title="Tags" description="All tags used on this site">
+ <PageTitle title="All Tags" />
+
32
<ul class="tags">
33
{
34
allTags
0 commit comments