diff options
author | Adam Carpenter <gitlab@53hor.net> | 2019-10-25 19:03:36 -0400 |
---|---|---|
committer | Adam Carpenter <gitlab@53hor.net> | 2019-10-25 19:03:36 -0400 |
commit | 9dd20dfcb919fd0bf54f2801ac5061dc43b849d9 (patch) | |
tree | 2520a0db66e411c31a906c79b4816dee9ff4bd72 | |
parent | a152b545f8a1af84171609ffa06868490c0292c7 (diff) | |
download | cobalt-site-9dd20dfcb919fd0bf54f2801ac5061dc43b849d9.tar.xz cobalt-site-9dd20dfcb919fd0bf54f2801ac5061dc43b849d9.zip |
Added open graph meta tags.
-rw-r--r-- | _layouts/post.liquid | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/_layouts/post.liquid b/_layouts/post.liquid index a23d51f..ab6ce02 100644 --- a/_layouts/post.liquid +++ b/_layouts/post.liquid @@ -2,6 +2,11 @@ <html> <head> {% include "head.liquid" %} + <!-- Open Graph Protocol --> + <meta property="og:title" content="{{ page.title }}"/> + <meta property="og:type" content="website"/> + <meta property="og:image" content="/favicon.ico"/> + <meta property="og:url" content="{{ page.permalink }}"/> </head> <body> |