Skip to content

Commit 9951fe7

Browse files
committed
merge branch main into am/formatting
2 parents ae55b78 + 9f8ee0f commit 9951fe7

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

src/layouts/BaseLayout.astro

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,32 @@ const {
5252
: new URL("/developers/img/og-image.png", Astro.site).href}
5353
/>
5454
<meta property="og:url" content={canonicalURL} />
55+
<meta
56+
property="og:description"
57+
content={description
58+
? description
59+
: "Making payments as easy as sending an email"}
60+
/>
61+
62+
<meta name="twitter:card" content="summary_large_image" />
63+
<meta
64+
name="twitter:title"
65+
content={title
66+
? `${title} | Interledger Foundation`
67+
: "Interledger Foundation"}
68+
/>
69+
<meta
70+
name="twitter:image"
71+
content={ogImageUrl
72+
? ogImageUrl
73+
: new URL("/developers/img/og-image.png", Astro.site).href}
74+
/>
75+
<meta
76+
name="twitter:description"
77+
content={description
78+
? description
79+
: "Making payments as easy as sending an email"}
80+
/>
5581

5682
<link rel="icon" type="image/svg+xml" href="/developers/favicon.svg" />
5783
<script

0 commit comments

Comments
 (0)