diff options
author | 2022-05-11 23:20:00 +0200 | |
---|---|---|
committer | 2022-05-11 16:20:00 -0500 | |
commit | 484b80eb99409b7a486a0d4de899c49e9569e06b (patch) | |
tree | 7f8d53ac76e3da887fe2563492aa566fddc009c8 /examples/blog/src | |
parent | 114bf63e11f28299b13178ef1a412eed37ab7909 (diff) | |
download | astro-484b80eb99409b7a486a0d4de899c49e9569e06b.tar.gz astro-484b80eb99409b7a486a0d4de899c49e9569e06b.tar.zst astro-484b80eb99409b7a486a0d4de899c49e9569e06b.zip |
fix: updated blog template with existing address (#3312)
Diffstat (limited to 'examples/blog/src')
-rw-r--r-- | examples/blog/src/components/BaseHead.astro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/blog/src/components/BaseHead.astro b/examples/blog/src/components/BaseHead.astro index 20ca69212..2725363a6 100644 --- a/examples/blog/src/components/BaseHead.astro +++ b/examples/blog/src/components/BaseHead.astro @@ -24,14 +24,14 @@ const { title, description, permalink } = Astro.props; <meta property="og:url" content={permalink} /> <meta property="og:title" content={title} /> <meta property="og:description" content={description} /> -<meta property="og:image" content="https://astro.build/social.jpg?v=1" /> +<meta property="og:image" content="https://astro.build/social.png?v=1" /> <!-- Twitter --> <meta property="twitter:card" content="summary_large_image" /> <meta property="twitter:url" content={permalink} /> <meta property="twitter:title" content={title} /> <meta property="twitter:description" content={description} /> -<meta property="twitter:image" content="https://astro.build/social.jpg?v=1" /> +<meta property="twitter:image" content="https://astro.build/social.png?v=1" /> <!-- Fonts --> <link rel="preconnect" href="https://fonts.gstatic.com" /> |