Blogging Metadata

GRAV をブログなどで利用する場合は、Facebook / Twitter で記事共有する際に利用する、メタ情報(OGP 情報)を含める必要があります。

これらの情報は、Header セクションに記載します。

メタ情報については、Meta Page Headers に記載されています。

ブログの各ページの Header には、以下のようなものを記載するとよいでしょう。

---
title: Blog Post Title
publish_date: Date the blog post will go live
date: Date the blog post was written
metadata:
    'og:title': Blog Post Title
    'og:type': article
    'og:description': 記事の説明を書きます。共有するときに表示される文字列になります。
    'og:url': The URL of the blog post
    'og:site_name': 記事が属するサイト全体の名称
    'og:locale': The language your blog post is written in
    'og:image': The image you reference here will be visible when shared on social media. 
    'twitter:card' : The type of Twitter card that should be used. 
    'twitter:site' : Your Twitter handle
    'twitter:title' : Blog Post Title
    'twitter:description' : Description of what your blog post is covering.  This will be visible when people share your post on social media.
    'twitter:image' : The image you reference here will be visible when shared on social media. 
    'twitter:creator': The twitter handle of the blog post author. 
taxonomy:
    category: [Blog post category]
    tag: [Tag 1, Tag 2, Tag 3, Tag 4]
    author: Author's name
---