diff --git a/content/blog/2016/happy-new-year.md b/content/blog/2016/happy-new-year.md
index 667dcd23..1a1d6dd9 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 82344a8e..210b2e0c 100644
--- a/src/components/SiteLayout.astro
+++ b/src/components/SiteLayout.astro
@@ -4,40 +4,22 @@ 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 && }
-
-
+
@@ -48,7 +30,7 @@ const metaTitle = title
- {canonicalUrl && }
+ {canonical && }
@@ -57,13 +39,13 @@ const metaTitle = title