From 6987a0668b595599fed21e3876904f3b05d9eee9 Mon Sep 17 00:00:00 2001 From: Eloi Perdereau <eloi@perdereau.eu> Date: Wed, 4 Dec 2019 21:32:24 +0100 Subject: [PATCH] fix --- _layouts/single.html | 4 ++-- _layouts/splash.html | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/_layouts/single.html b/_layouts/single.html index 05f2477..81915e9 100644 --- a/_layouts/single.html +++ b/_layouts/single.html @@ -24,8 +24,8 @@ layout: default <article class="page" itemscope itemtype="https://schema.org/CreativeWork"> {% if page.title %}<meta itemprop="headline" content="{{ page.title | markdownify | strip_html | strip_newlines | escape_once }}">{% endif %} {% if page.excerpt %}<meta itemprop="description" content="{{ page.excerpt | markdownify | strip_html | strip_newlines | escape_once }}">{% endif %} - {% if page.date %}<meta itemprop="datePublished" content="{{ page.date | date: date_to_xmlschema }}">{% endif %} - {% if page.last_modified_at %}<meta itemprop="dateModified" content="{{ page.last_modified_at | date: date_to_xmlschema }}">{% endif %} + {% if page.date %}<meta itemprop="datePublished" content="{{ page.date | date_to_xmlschema }}">{% endif %} + {% if page.last_modified_at %}<meta itemprop="dateModified" content="{{ page.last_modified_at | date_to_xmlschema }}">{% endif %} <div class="page__inner-wrap"> {% unless page.header.type == 'overlay' or page.header.type == 'default' %} diff --git a/_layouts/splash.html b/_layouts/splash.html index b1f2ac0..60567c6 100644 --- a/_layouts/splash.html +++ b/_layouts/splash.html @@ -12,8 +12,8 @@ layout: default <article class="splash" itemscope itemtype="https://schema.org/CreativeWork"> {% if page.title %}<meta itemprop="headline" content="{{ page.title | markdownify | strip_html | strip_newlines | escape_once }}">{% endif %} {% if page.excerpt %}<meta itemprop="description" content="{{ page.excerpt | markdownify | strip_html | strip_newlines | escape_once }}">{% endif %} - {% if page.date %}<meta itemprop="datePublished" content="{{ page.date | date: date_to_xmlschema %d, %Y" }}">{% endif %} - {% if page.last_modified_at %}<meta itemprop="dateModified" content="{{ page.last_modified_at | date: date_to_xmlschema %d, %Y" }}">{% endif %} + {% if page.date %}<meta itemprop="datePublished" content="{{ page.date | date_to_xmlschema }}">{% endif %} + {% if page.last_modified_at %}<meta itemprop="dateModified" content="{{ page.last_modified_at | date_to_xmlschema }}">{% endif %} <section class="page__content" itemprop="text"> {{ content }} -- GitLab