From fed6fc374d02c2ae8f67bff837c8c8334760b303 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sun, 8 May 2022 10:05:30 -0400 Subject: [PATCH] article jsonld --- jsonld_templates/blog_post.jsonld | 42 +++++++++++++++++++++++++++++++ templates/page.html | 36 +++++++++++++------------- 2 files changed, 60 insertions(+), 18 deletions(-) create mode 100644 jsonld_templates/blog_post.jsonld 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 %}