Skip to content
This repository has been archived by the owner on Jan 9, 2025. It is now read-only.

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Adammatthiesen committed Feb 11, 2024
1 parent 4ed3890 commit 42660b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/astro-ghostcms-brutalbyelian/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@matthiesenxyz/astro-ghostcms-brutalbyelian",
"description": "ElianCodes Brutal theme modified to work with Astro-GhostCMS",
"version": "0.0.1-dev07",
"version": "0.0.1-dev08",
"homepage": "https://astro-ghostcms.xyz/",
"type": "module",
"license": "MIT",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { getOgImagePath } from "@matthiesenxyz/astro-ghostcms/satoriOG";
const settings = await getSettings();
invariant(settings, 'Settings not found');
const Ghosttitle = settings.title;
const favicon = await settings.icon;
interface Props {
title: string;
Expand Down Expand Up @@ -43,7 +44,7 @@ const { title, description } = Astro.props;
<meta property='twitter:image' content={ogI} />

<link rel='canonical' href={canonicalURL} />
<link rel='icon' type='image/svg' href={settings.icon} />
<link rel='icon' type='image/svg' href={favicon} />

<title>{Ghosttitle} | {title}</title>

Expand Down

2 comments on commit 42660b4

@vercel
Copy link

@vercel vercel bot commented on 42660b4 Feb 11, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 42660b4 Feb 11, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.