Skip to content

Commit

Permalink
fix ogp image path
Browse files Browse the repository at this point in the history
  • Loading branch information
fumaSuzuki committed Dec 2, 2024
1 parent b5ed9f5 commit 646aebf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ title =
description =
description ||
'Webチームの公式サイトです。Webチームは「『創る』を楽しめる人になろう」を指針とし、Webサイトの制作・提供(無償)やWebアプリケーションの開発を行っています。'
og_image = og_image || '/assets/images/webteam_banner.webp'
og_image = og_image || 'assets/images/webteam_banner.webp'
---

<!doctype html>
Expand All @@ -30,7 +30,7 @@ og_image = og_image || '/assets/images/webteam_banner.webp'
<meta property="og:title" content={title} />
<meta property="og:description" content={description} />
<meta property="og:url" content={Astro.url} />
<meta property="og:image" content={og_image} />
<meta property="og:image" content={Astro.url + og_image} />
<meta name="twitter:site" content="@WinCircleHpTeam" />
<meta name="twitter:url" content={Astro.url} />
<meta name="twitter:title" content={title} />
Expand Down

0 comments on commit 646aebf

Please # to comment.