27 lines
No EOL
1.4 KiB
PHP
27 lines
No EOL
1.4 KiB
PHP
<?php
|
|
$protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http';
|
|
$base_url = $protocol . '://' . $_SERVER['HTTP_HOST'];
|
|
?>
|
|
<!-- twitter card -->
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
<meta name="twitter:site" content="@PetsatHome" />
|
|
<meta name="twitter:creator" content="@PetsatHome" />
|
|
<meta name="twitter:title" content="Here's my song." />
|
|
<meta name="twitter:description" content="Listen to the Pet Love Song I created to celebrate my love for my pet this Valentine's - and create your own, too!" />
|
|
<meta name="twitter:image" content="<?php echo $base_url; ?>/assets/images/thumbnail.png" />
|
|
|
|
<!-- OG base data -->
|
|
<meta property="og:url" content="<?php echo $base_url; ?>/" />
|
|
<meta property="og:title" content="Here's my song." />
|
|
<meta property="og:description" content="Listen to the Pet Love Song I created to celebrate my love for my pet this Valentine's - and create your own, too!" />
|
|
<meta property="og:site_name" content="Pets at Home | Valentine's Jukebox" />
|
|
<meta property="og:locale" content="en_GB" />
|
|
|
|
<!-- OG image data (MUST be absolute URLs) -->
|
|
<meta property="og:image" content="<?php echo $base_url; ?>/assets/images/thumbnail.png" />
|
|
<meta property="og:image:alt" content="Pet's At Home Valentine's Jukebox" />
|
|
<meta property="og:image:width" content="1200" />
|
|
<meta property="og:image:height" content="630" />
|
|
|
|
<!-- extra metadata — unknown support -->
|
|
<meta property="og:type" content="website" />
|