Refactor head file to be a bit more modular
This commit is contained in:
@ -1,7 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
{% include head.html %}
|
||||
<head>
|
||||
{% include head.html %}
|
||||
<meta property="og:type" content="website"/>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header>
|
||||
|
@ -1,7 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
{% include head.html %}
|
||||
<head>
|
||||
{% include head.html %}
|
||||
<meta property="og:type" content="website"/>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header>
|
||||
|
@ -1,7 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
{% include head.html %}
|
||||
<head>
|
||||
{% include head.html %}
|
||||
<meta property="og:type" content="website"/>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header>
|
||||
|
@ -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>
|
||||
|
Reference in New Issue
Block a user