11{% extends "base.html" %}
22
33{% block extrahead %}
4+ {{ super() }}
5+ <!-- Primary Meta Tags -->
6+ < meta name ="title " content ="{{ config.site_name }} ">
7+ < meta name ="description " content ="{{ config.site_description }} ">
8+
49 <!-- Open Graph / Facebook -->
510 < meta property ="og:type " content ="website ">
6- < meta property ="og:url " content ="{{ config.site_url }} ">
7- < meta property ="og:title " content ="{{ config.site_name }} ">
8- < meta property ="og:description " content ="{{ config.site_description }} ">
9- < meta property ="og:image " content ="{{ config.site_url }}assets/favicon.png ">
11+ < meta property ="og:url " content ="{{ config.site_url }}{{ page.url }} ">
12+ < meta property ="og:title " content ="{% if page.title %}{{ page.title }} - {% endif %}{{ config.site_name }} ">
13+ < meta property ="og:description " content ="{% if page.description %}{{ page.description }}{% else %}{{ config.site_description }}{% endif %} ">
14+ < meta property ="og:image " content ="{{ config.site_url }}assets/og-image.png ">
15+ < meta property ="og:site_name " content ="{{ config.site_name }} ">
16+ < meta property ="og:locale " content ="ja_JP ">
1017
1118 <!-- Twitter -->
12- < meta property ="twitter:card " content ="summary_large_image ">
13- < meta property ="twitter:url " content ="{{ config.site_url }} ">
14- < meta property ="twitter:title " content ="{{ config.site_name }} ">
15- < meta property ="twitter:description " content ="{{ config.site_description }} ">
16- < meta property ="twitter:image " content ="{{ config.site_url }}assets/favicon.png ">
19+ < meta name ="twitter:card " content ="summary_large_image ">
20+ < meta name ="twitter:url " content ="{{ config.site_url }}{{ page.url }} ">
21+ < meta name ="twitter:title " content ="{% if page.title %}{{ page.title }} - {% endif %}{{ config.site_name }} ">
22+ < meta name ="twitter:description " content ="{% if page.description %}{{ page.description }}{% else %}{{ config.site_description }}{% endif %} ">
23+ < meta name ="twitter:image " content ="{{ config.site_url }}assets/og-image.png ">
24+
25+ <!-- Additional Meta Tags -->
26+ < link rel ="canonical " href ="{{ config.site_url }}{{ page.url }} ">
1727{% endblock %}
0 commit comments