diff --git a/jsonld_templates/blog_post.jsonld b/jsonld_templates/blog_post.jsonld
new file mode 100644
index 0000000..2f6499e
--- /dev/null
+++ b/jsonld_templates/blog_post.jsonld
@@ -0,0 +1,42 @@
+{
+ "@context": "http://schema.org",
+ "@type": "BlogPosting",
+ "url": "{{url}}",
+ "headline": "{{title}}",
+ "dateCreated": "{{date}}T00:00:00",
+ "datePublished": "{{date}}T00:00:00",
+ "dateModified": "{{date}}T00:00:00",
+ "inLanguage": "en-CA",
+ "isFamilyFriendly": "true",
+ "accountablePerson": {
+ "@type": "Person",
+ "name": "Evan Pratten",
+ "url": "https://va3zza.com"
+ },
+ "author": {
+ "@type": "Person",
+ "name": "Evan Pratten",
+ "url": "https://va3zza.com"
+ },
+ "creator": {
+ "@type": "Person",
+ "name": "Evan Pratten",
+ "url": "https://va3zza.com"
+ },
+ "publisher": {
+ "@type": "Organization",
+ "name": "Evan Pratten",
+ "url": "https://va3zza.com",
+ "logo": {
+ "@type": "ImageObject",
+ "url": "{{profile_pic}}",
+ "width": "460",
+ "height": "460"
+ }
+ },
+ "mainEntityOfPage": "True",
+ "keywords": [],
+ "genre": [],
+ "articleSection": "Blog Post",
+ "articleBody": "{{content}}"
+}
\ No newline at end of file
diff --git a/templates/page.html b/templates/page.html
index 37e8b17..cfeb87b 100644
--- a/templates/page.html
+++ b/templates/page.html
@@ -26,24 +26,7 @@ MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']], displayMat
{% endif %}
-
-
-{# Handle article listing #}
-
-
-
+
{# Handle auto-centering request #}
{% if page.extra.auto_center_images %}
@@ -55,6 +38,23 @@ MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']], displayMat
}
{% endif %}
+
+{# Handle loading JSONLD #}
+{% if page.extra.is_rfc or page.description and page.date %}
+
+{% endif %}
{% endblock head %}
{% block profile %}