1

Render some ldjson info for some pages

This commit is contained in:
Evan Pratten 2021-11-16 15:38:44 -05:00
parent f20bffe3da
commit f66f687b46
2 changed files with 47 additions and 0 deletions

View File

@ -27,6 +27,22 @@ MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']], displayMat
<meta property="description" content="{{config.description}}" />
{% endif %}
<meta property="article:published_time" content="{{page.date}}T00:00:00+00:00" />
{# Handle article listing #}
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "NewsArticle",
"headline": "{{page.title}}",
"datePublished": "{{page.date}}T00:00:00+00:00",
"author": [{
"@type": "Person",
"name": "Evan Pratten",
"url": "https://va3zza.com"
}]
}
</script>
{% endblock head %}
{% block profile %}

View File

@ -13,6 +13,37 @@
<meta property="og:description" content="{{config.description}}" />
<meta property="description" content="{{config.description}}" />
{% endif %}
{# Handle listing blog posts nicely in search #}
{% if section.extra.inject_blog_posts %}
<script type="application/ld+json">
{
"@context":"https://schema.org",
"@type":"ItemList",
"itemListElement":[
{% for page in section.pages %}
{% if not page.extra.hidden %}
{
"@type":"ListItem",
"position": "{{loop.index}}",
"item": {
"@type": "Article",
"headline": "{{page.title}}",
"url":"https://va3zza.com{{page.path | safe}}",
"author": [{
"@type": "Person",
"name": "Evan Pratten",
"url": "https://va3zza.com"
}]
}
} {% if not loop.last %},{% endif %}
{% endif %}
{% endfor %}
]
}
</script>
{% endif %}
{% endblock head %}
{% block content %}