diff options
author | Adam Carpenter <gitlab@53hor.net> | 2019-10-25 19:28:15 -0400 |
---|---|---|
committer | Adam Carpenter <gitlab@53hor.net> | 2019-10-25 19:28:15 -0400 |
commit | f203d33ea1c6d261da0df5a0553bfad700b5c09b (patch) | |
tree | 2bcb1bba72e4180ea14fd71cf28634d4b6a8cb72 /_includes | |
parent | c1921d007121ef8fb24e60a5e9da4cae512ce505 (diff) | |
download | cobalt-site-f203d33ea1c6d261da0df5a0553bfad700b5c09b.tar.xz cobalt-site-f203d33ea1c6d261da0df5a0553bfad700b5c09b.zip |
OGP
Diffstat (limited to '_includes')
-rw-r--r-- | _includes/head.liquid | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/_includes/head.liquid b/_includes/head.liquid index 0698e61..4f5313c 100644 --- a/_includes/head.liquid +++ b/_includes/head.liquid @@ -6,7 +6,14 @@ <!-- Open Graph Protocol --> <meta property="og:title" content="{{ page.title }}"/> <meta property="og:description" content="{{ page.excerpt | truncatewords: 20 }}"/> -<meta property="og:type" content="website"/> <meta property="og:image" content="https://53hor.net/public/images/logo.png"/> <meta property="og:url" content="{{ page.permalink }}"/> <meta property="og:site_name" content="53hornet"/> +<meta property="og:type" content="article"/> +<meta property="article:published_time" content="{{ page.published_date }}"/> +<meta property="article:author" content="Adam Carpenter"/> +<meta property="article:section" content="{{ page.category }}"/> + +{% for tag in page.tags %} + <meta property="article:tag" content="{{ tag }}"/> +{% endfor %} |