diff options
Diffstat (limited to 'src/pages')
-rw-r--r-- | src/pages/blog/keywords/[keyword].astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pages/blog/keywords/[keyword].astro b/src/pages/blog/keywords/[keyword].astro index 8f0494b..cdc00b1 100644 --- a/src/pages/blog/keywords/[keyword].astro +++ b/src/pages/blog/keywords/[keyword].astro @@ -25,7 +25,7 @@ export async function getStaticPaths() { })); } -const title = `Blogue &ndash ${Astro.params.keyword}`; +const title = `Blogue – ${Astro.params.keyword}`; const description = `Últimas postagens da categoria ${Astro.params.keyword}.`; const posts = Astro.props.posts.sort((a, b) => |