Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions _includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@
{% if author %}
<meta name="author" content="{{ author }}">
{% endif %}
<meta name="robots" content="index, follow">
<meta name="googlebot" content="index, follow">
<meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1">
<meta property="og:locale" content="en_US">
<link rel="canonical" href="{{ site.url }}{{ page.url }}">
<link rel="alternate" hreflang="en" href="{{ site.url }}{{ page.url }}">
Expand Down Expand Up @@ -40,9 +39,6 @@
{% if date %}
<!-- Created date -->
<meta property="article:published_time" content="{{ date }}" />
<meta name="dc.date" content="{{ date }}">
<meta name="dc.date.created" content="{{ date }}">
<meta name="dcterms.created" content="{{ date }}">
{% endif %}
{% if author %}
<!-- Author -->
Expand All @@ -51,8 +47,12 @@
{% if modified %}
<!-- Modified date -->
<meta property="article:modified_time" content="{{ modified }}">
<meta name="dc.date.modified" content="{{ modified }}">
<meta name="dcterms.modified" content="{{ modified }}">
{% endif %}
{% if schema %}
<!-- Schema.org -->
<script type="application/ld+json">
{{ schema | safe }}
</script>
{% endif %}
<!-- Favicon -->
{% include "favicon.html" %}
Expand Down
Loading