Skip to content

Commit

Permalink
update: Description and separate domain from URL
Browse files Browse the repository at this point in the history
  • Loading branch information
joshbruce committed Feb 3, 2024
1 parent bdb4fc7 commit dcaf065
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions site-root/public/head.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
<?php
$description = 'Josh Bruce helps individuals and organizations make peace with space, time, and money. Whether itʼs physical, digital, or downsizing, Josh can probably help. Josh Bruce has been working as a coach for over a decade and is a self-proclaimed productivity super-freak.';
$description = 'Josh Bruce helps individuals make peace with time, space, and money. Whether itʼs physical, digital, or downsizing, Josh can probably help. Josh Bruce has been working as a coach for over a decade and is a self-proclaimed productivity super-freak.';

$poster = 'https://mastering-the-mundane.com/media/poster.png';

$domain = 'https://mastering-the-mundane.com';
$domain = 'mastering-the-mundane.com';

$url = 'https://' . $domain;
?>
<!doctype html>
<head>
Expand Down Expand Up @@ -36,8 +38,8 @@

<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="mastering-the-mundane.com">
<meta property="twitter:url" content="<?php print($domain); ?>">
<meta property="twitter:domain" content="<?php print($domain); ?>">
<meta property="twitter:url" content="<?php print($url); ?>">
<meta name="twitter:title" content="<?php print($pageTitle); ?>">
<meta name="twitter:description" content="<?php print($description); ?>">
<meta name="twitter:image" content="<?php print($poster); ?>">
Expand Down

0 comments on commit dcaf065

Please sign in to comment.