Set default titleTemplate

This commit is contained in:
prototypa
2023-01-06 13:18:21 -05:00
parent e478745e26
commit bb57b3b63f
7 changed files with 13 additions and 8 deletions

View File

@ -22,7 +22,7 @@ const { page } = Astro.props;
const currentPage = page.currentPage ?? 1;
const meta = {
title: `Blog ${currentPage > 1 ? `— Page ${currentPage} ` : ''}— ${SITE.name}`,
title: `Blog${currentPage > 1 ? ` — Page ${currentPage}` : ''}`,
description: SITE.description,
canonical: getCanonical(getPermalink(BLOG?.blog?.pathname)),
ogType: 'blog',

View File

@ -25,7 +25,7 @@ const { post } = Astro.props;
const url = getCanonical(getPermalink(post.slug, 'post'));
const meta = {
title: `${post.title} — ${SITE.name}`,
title: post.title,
description: post.description,
canonical: post.canonical || url,
image: await findImage(post.image),