Refactor head file to be a bit more modular

This commit is contained in:
2019-05-05 14:13:40 -07:00
committed by Andrew Cassidy
parent 992dc53720
commit 63cc0d2f11
5 changed files with 72 additions and 71 deletions

View File

@ -1,7 +1,10 @@
<!DOCTYPE html>
<html>
{% include head.html %}
<head>
{% include head.html %}
<meta property="og:type" content="website"/>
</head>
<body>
<header>

View File

@ -1,7 +1,10 @@
<!DOCTYPE html>
<html>
{% include head.html %}
<head>
{% include head.html %}
<meta property="og:type" content="website"/>
</head>
<body>
<header>

View File

@ -1,7 +1,10 @@
<!DOCTYPE html>
<html>
{% include head.html %}
<head>
{% include head.html %}
<meta property="og:type" content="website"/>
</head>
<body>
<header>

View File

@ -1,7 +1,19 @@
<!DOCTYPE html>
<html>
{% include head.html %}
<head>
{% include head.html %}
<meta property="og:type"
content="article"/>
<meta property="article:published_time"
content="{{ page.date | date_to_xmlschema }}"/>
<meta property="article:section"
content="Blog"/>
{% for tag in page.tags %}
<meta property="article:tag" content="{{ tag }}"/>
{% endfor %}
</head>
<body>
<header>