Add new 'noindex' settings for Blog entitities

This commit is contained in:
prototypa
2023-01-06 15:25:11 -05:00
parent 894058cd5f
commit ba2b6081ed
5 changed files with 8 additions and 4 deletions

View File

@ -36,7 +36,7 @@ const currentPage = page.currentPage ?? 1;
const meta = {
title: `Category'${category}' ${currentPage > 1 ? ` — Page ${currentPage}` : ''}`,
description: SITE.description,
noindex: true,
noindex: BLOG?.category?.noindex,
};
---