summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabe Kangas <gabek@real-ity.com>2022-01-22 21:04:45 -0800
committerGabe Kangas <gabek@real-ity.com>2022-01-22 21:04:45 -0800
commit580a6077e12a101b7ad0f2409d84eb03d4409af3 (patch)
treecc1a22d0dff19895eb163a17ba69553c1c162db3
parentec272f6ce08f75ddf89dd86e74b5646c02b4f623 (diff)
Support Mastodon+Twitter cards via HTML embed player in OG tags.
-rw-r--r--static/metadata.html.tmpl15
1 files changed, 10 insertions, 5 deletions
diff --git a/static/metadata.html.tmpl b/static/metadata.html.tmpl
index a65df60b8..e88da45a8 100644
--- a/static/metadata.html.tmpl
+++ b/static/metadata.html.tmpl
@@ -18,16 +18,21 @@
<meta property="og:image:url" content="{{.Thumbnail}}">
<meta property="og:image:alt" content="{{.Image}}">
- <meta property="og:video" content='{{.RequestedURL}}hls/stream.m3u8' />
- <meta property="og:video:height" content="640" />
- <meta property="og:video:width" content="385" />
- <meta property="og:video:type" content="application/x-mpegURL" />
+ <meta property="og:video" content='{{.RequestedURL}}embed/video' />
+ <meta property="og:video:secure_url" content='{{.RequestedURL}}embed/video' />
+ <meta property="og:video:height" content="315" />
+ <meta property="og:video:width" content="560" />
+ <meta property="og:video:type" content="text/html" />
<meta property="og:video:actor" content="{{.Name}}" />
<meta property="twitter:title" content="{{.Name}}">
<meta property="twitter:url" content="{{.RequestedURL}}">
<meta property="twitter:description" content="{{.Summary}}">
<meta property="twitter:image" content="{{.Image}}">
+ <meta property="twitter:card" content="player" />
+ <meta property="twitter:player" content='{{.RequestedURL}}embed/video' />
+ <meta property="twitter:player:width" content="560" />
+ <meta property="twitter:player:height" content="315" />
<link rel="apple-touch-icon" sizes="57x57" href="/img/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/img/favicon/apple-icon-60x60.png">
@@ -65,7 +70,7 @@
<br/>
- <h3>Connect with {{.Name}} elsewhere by visiting:</h3>
+ <h3>Links for {{.Name}}:</h3>
{{range .SocialHandles}}
<li><a href="{{.URL}}">{{.Platform}}</a></li>