Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/components/overrides/Head.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,8 @@ const NOINDEX_PRODUCTS = ["email-security", "style-guide", "security"];

const currentSection = Astro.url.pathname.split("/")[1].replaceAll(".", "");

const entry = Astro.locals.starlightRoute.entry;
const { entry, head } = Astro.locals.starlightRoute;
const frontmatter = entry.data;
const head = frontmatter.head;

const metaTags = [] as Record<string, string>[];

Expand Down Expand Up @@ -161,6 +160,8 @@ metaTags.map((attrs) => {
attrs,
});
});

console.log(head);
---

<script src="src/scripts/footnotes.ts"></script>
Expand Down
Loading