34 lines
948 B
HTML
34 lines
948 B
HTML
|
<!doctype html>
|
||
|
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>Pleroma:image</title>
|
||
|
<!--
|
||
|
twitter:card = summary_large_image
|
||
|
twitter:player = <defined>, and URL points thumbnail image.
|
||
|
og:video:* = <undefined>
|
||
|
-->
|
||
|
|
||
|
<meta content="Title" property="og:title">
|
||
|
<meta content="https://example.com/pageurl" property="og:url">
|
||
|
<meta content="Desc" property="og:description">
|
||
|
<meta content="article" property="og:type">
|
||
|
<meta content="https://example.com/imageurl" property="og:image">
|
||
|
<meta content="150" property="og:image:width">
|
||
|
<meta content="150" property="og:image:height">
|
||
|
<meta content="Title" property="twitter:title">
|
||
|
<meta content="Desc" property="twitter:description">
|
||
|
<meta content="summary_large_image" property="twitter:card">
|
||
|
<meta content="https://example.com/imageurl" property="twitter:player"><!-- This URL is an image. -->
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<h1>Yo</h1>
|
||
|
<p>Hey hey hey toastie.</p>
|
||
|
</body>
|
||
|
|
||
|
</html>
|