M _includes/archive-single.html => _includes/archive-single.html +2 -2
@@ 11,7 11,7 @@
{% endif %}
<div class="{{ include.type | default: "list" }}__item">
- <article class="archive__item" itemscope itemtype="http://schema.org/CreativeWork">
+ <article class="archive__item" itemscope itemtype="https://schema.org/CreativeWork">
{% if include.type == "grid" and teaser %}
<div class="archive__item-teaser">
<img src=
@@ 35,4 35,4 @@
{% endif %}
{% if post.excerpt %}<p class="archive__item-excerpt" itemprop="description">{{ post.excerpt | markdownify | strip_html | truncate: 160 }}</p>{% endif %}
</article>
-</div>>
\ No newline at end of file
+</div>
M _includes/author-profile.html => _includes/author-profile.html +2 -2
@@ 1,7 1,7 @@
{% assign author = page.author | default: page.authors[0] | default: site.author %}
{% assign author = site.data.authors[author] | default: author %}
-<div itemscope itemtype="http://schema.org/Person">
+<div itemscope itemtype="https://schema.org/Person">
{% if author.avatar %}
<div class="author__avatar">
@@ 43,7 43,7 @@
<button class="btn btn--inverse">{{ site.data.ui-text[site.locale].follow_label | remove: ":" | default: "Follow" }}</button>
<ul class="author__urls social-icons">
{% if author.location %}
- <li itemprop="homeLocation" itemscope itemtype="http://schema.org/Place">
+ <li itemprop="homeLocation" itemscope itemtype="https://schema.org/Place">
<i class="fas fa-fw fa-map-marker-alt" aria-hidden="true"></i> <span itemprop="name">{{ author.location }}</span>
</li>
{% endif %}
M => +2 -2
@@ 1,9 1,9 @@
<article id="comment{{ include.index }}" class="js-comment comment" itemprop="comment" itemscope itemtype="http://schema.org/Comment">
<article id="comment{{ include.index }}" class="js-comment comment" itemprop="comment" itemscope itemtype="https://schema.org/Comment">
<div class="comment__avatar-wrapper">
<img class="comment__avatar" src="https://www.gravatar.com/avatar/{{ include.email }}?d=mm&s=80" alt="{{ include.name }}">
</div>
<div class="comment__content-wrapper">
<h3 class="comment__author" itemprop="author" itemscope itemtype="http://schema.org/Person">
<h3 class="comment__author" itemprop="author" itemscope itemtype="https://schema.org/Person">
{% unless include.url == blank %}
<span itemprop="name"><a rel="external nofollow" itemprop="url" href="{{ include.url }}">{{ include.name }}</a></span>
{% else %}
M _includes/search/algolia-search-scripts.html => _includes/search/algolia-search-scripts.html +1 -1
@@ 24,7 24,7 @@ const hitTemplate = function(hit) {
return `
<div class="list__item">
- <article class="archive__item" itemscope itemtype="http://schema.org/CreativeWork">
+ <article class="archive__item" itemscope itemtype="https://schema.org/CreativeWork">
<h2 class="archive__item-title" itemprop="headline"><a href="{{ site.baseurl }}${url}">${title}</a></h2>
<div class="archive__item-excerpt" itemprop="description">${content}</div>
</article>
M _includes/seo.html => _includes/seo.html +2 -2
@@ 126,7 126,7 @@
{% if site.og_image %}
<script type="application/ld+json">
{
- "@context": "http://schema.org",
+ "@context": "https://schema.org",
"@type": "Organization",
"url": {{ seo_url | jsonify }},
"logo": {{ site_og_image | jsonify }}
@@ 137,7 137,7 @@
{% if site.social %}
<script type="application/ld+json">
{
- "@context": "http://schema.org",
+ "@context": "https://schema.org",
"@type": "{% if site.social.type %}{{ site.social.type }}{% else %}Person{% endif %}",
"name": {{ site.social.name | default: site.name | jsonify }},
"url": {{ seo_url | jsonify }},
M _layouts/single.html => _layouts/single.html +2 -2
@@ 17,7 17,7 @@ layout: default
<div id="main" role="main">
{% include sidebar.html %}
- <article class="page" itemscope itemtype="http://schema.org/CreativeWork">
+ <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: "%B %d, %Y" }}">{% endif %}
@@ 92,4 92,4 @@ layout: default
</div>
</div>
{% endif %}
-</div>>
\ No newline at end of file
+</div>
M _layouts/splash.html => _layouts/splash.html +2 -2
@@ 9,7 9,7 @@ layout: default
{% endif %}
<div id="main" role="main">
- <article class="splash" itemscope itemtype="http://schema.org/CreativeWork">
+ <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: "%B %d, %Y" }}">{% endif %}
@@ 19,4 19,4 @@ layout: default
{{ content }}
</section>
</article>
-</div>>
\ No newline at end of file
+</div>
M assets/js/lunr/lunr-en.js => assets/js/lunr/lunr-en.js +2 -2
@@ 47,7 47,7 @@ $(document).ready(function() {
if(store[ref].teaser){
var searchitem =
'<div class="list__item">'+
- '<article class="archive__item" itemscope itemtype="http://schema.org/CreativeWork">'+
+ '<article class="archive__item" itemscope itemtype="https://schema.org/CreativeWork">'+
'<h2 class="archive__item-title" itemprop="headline">'+
'<a href="'+store[ref].url+'" rel="permalink">'+store[ref].title+'</a>'+
'</h2>'+
@@ 61,7 61,7 @@ $(document).ready(function() {
else{
var searchitem =
'<div class="list__item">'+
- '<article class="archive__item" itemscope itemtype="http://schema.org/CreativeWork">'+
+ '<article class="archive__item" itemscope itemtype="https://schema.org/CreativeWork">'+
'<h2 class="archive__item-title" itemprop="headline">'+
'<a href="'+store[ref].url+'" rel="permalink">'+store[ref].title+'</a>'+
'</h2>'+
M assets/js/lunr/lunr-gr.js => assets/js/lunr/lunr-gr.js +2 -2
@@ 500,7 500,7 @@ $(document).ready(function() {
if(store[ref].teaser){
var searchitem =
'<div class="list__item">'+
- '<article class="archive__item" itemscope itemtype="http://schema.org/CreativeWork">'+
+ '<article class="archive__item" itemscope itemtype="https://schema.org/CreativeWork">'+
'<h2 class="archive__item-title" itemprop="headline">'+
'<a href="'+store[ref].url+'" rel="permalink">'+store[ref].title+'</a>'+
'</h2>'+
@@ 514,7 514,7 @@ $(document).ready(function() {
else{
var searchitem =
'<div class="list__item">'+
- '<article class="archive__item" itemscope itemtype="http://schema.org/CreativeWork">'+
+ '<article class="archive__item" itemscope itemtype="https://schema.org/CreativeWork">'+
'<h2 class="archive__item-title" itemprop="headline">'+
'<a href="'+store[ref].url+'" rel="permalink">'+store[ref].title+'</a>'+
'</h2>'+