tangled
alpha
login
or
join now
claycow.com
/
claycow
0
fork
atom
A Astro blog hosted on Vercel
0
fork
atom
overview
issues
pulls
pipelines
change to astro site for environment set url
Clayton Cook
1 year ago
687fd6a6
0866331a
+5
-5
1 changed file
expand all
collapse all
unified
split
src
components
organisms
Head.astro
+5
-5
src/components/organisms/Head.astro
···
54
54
55
55
<!-- Open Graph / Facebook -->
56
56
<meta property="og:type" content="website" />
57
57
-
<meta property="og:url" content={Astro.url} />
57
57
+
<meta property="og:url" content={Astro.site} />
58
58
<meta property="og:title" content={title} />
59
59
<meta property="og:description" content={description} />
60
60
<meta property="og:site_name" content="claycow" />
61
61
{
62
62
image && (
63
63
-
<meta property="og:image" content={new URL(image.src, Astro.url)} />
64
64
-
<meta property="og:image:url" content={new URL(image.src, Astro.url)} />
63
63
+
<meta property="og:image" content={new URL(image.src, Astro.site)} />
64
64
+
<meta property="og:image:url" content={new URL(image.src, Astro.site)} />
65
65
<meta property="og:image:type" content={`image/${image.format}`} />
66
66
<meta property="og:image:width" content={image.width.toString()} />
67
67
<meta property="og:image:height" content={image.height.toString()} />
···
71
71
72
72
<!-- Twitter -->
73
73
<meta property="twitter:card" content="summary_large_image" />
74
74
-
<meta property="twitter:url" content={Astro.url} />
74
74
+
<meta property="twitter:url" content={Astro.site} />
75
75
<meta property="twitter:title" content={title} />
76
76
<meta property="twitter:description" content={description} />
77
77
<meta property="twitter:site" content="claycow" />
···
79
79
image && (
80
80
<meta
81
81
property="twitter:image"
82
82
-
content={new URL(image.src, Astro.url)}
82
82
+
content={new URL(image.src, Astro.site)}
83
83
/>
84
84
<meta
85
85
property="twitter:image:alt"