Open Graph & Twitter Card
The theme automatically injects Open Graph and Twitter Card meta tags into every page, used by social platforms to render the title, description, and cover image when sharing (read by WeChat, Telegram, Twitter/X, Slack, Discord, etc.).
No extra configuration needed — tags are generated automatically:
og:type—articleon post pages,websiteelsewhereog:title/og:description— from the page title and description (posts use their excerpt)og:url— absolute URL of the page (generated viafull_url_for)og:site_name— taken fromtitlein your blog's root_config.ymlog:image— priority: postcover→ homepageindex.photo→logotwitter:card—summary_large_imageby default (when a cover exists) orsummary
Customizing the share image
To customize the share image, set the cover field in a post's front-matter (used both as the post list cover and the share card image):
---
title: One of My Posts
cover: /assets/images/my-cover.jpg
---
note
og:image is automatically converted to an absolute URL. If cover is already a full URL starting with http(s)://, it is used as-is.