diff --git a/content/blog/2016/happy-new-year.md b/content/blog/2016/happy-new-year.md
index 1a1d6dd9..667dcd23 100644
--- a/content/blog/2016/happy-new-year.md
+++ b/content/blog/2016/happy-new-year.md
@@ -9,7 +9,7 @@ categories:
tags: []
---
-

Happy New Year 2016!
+
Happy New Year 2016!
Let go of the past year and bring on the new! Check out this article by Dplife.info:
diff --git a/src/components/SiteLayout.astro b/src/components/SiteLayout.astro
index 210b2e0c..82344a8e 100644
--- a/src/components/SiteLayout.astro
+++ b/src/components/SiteLayout.astro
@@ -4,22 +4,40 @@ import SiteNav from "./SiteNav.astro";
const {
title,
+ description,
bodyClass,
- pathname,
+ pathname = "/",
canonical,
+ robots = "max-image-preview:large",
+ ogType = "website",
+ image = "/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg",
parabolaSettings = { masonry: "0", magazine: "0", mobile: "1", fitvids: "1" },
} = Astro.props;
const parabolaSettingsScript = `var parabola_settings = ${JSON.stringify(parabolaSettings)};`;
+const canonicalUrl = canonical ?? pathname;
+const metaTitle = title
+ .replace(/–|–/g, "-")
+ .replace(/‘|’|‘|’/g, "'")
+ .replace(/“|”|“|”/g, '"')
+ .replace(/&/g, "&");
---
-
+
-
+ {description && }
+ {robots && }
+
+
+ {description && }
+ {canonicalUrl && }
+ {image && }
+
+
@@ -30,7 +48,7 @@ const parabolaSettingsScript = `var parabola_settings = ${JSON.stringify(parabol
- {canonical && }
+ {canonicalUrl && }
@@ -39,13 +57,13 @@ const parabolaSettingsScript = `var parabola_settings = ${JSON.stringify(parabol