diff --git a/templates/base.html b/templates/base.html
index ad6c122..9e773a5 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -5,6 +5,19 @@
{% block title %}{{ config.title }}{% endblock title %}
+
+
+
+
+
+
+
+
+ {% block og_extra %}{% endblock og_extra %}
+
+
+
+
diff --git a/templates/page.html b/templates/page.html
index efc4d4a..7942fbc 100644
--- a/templates/page.html
+++ b/templates/page.html
@@ -4,6 +4,15 @@
{% block description %}{% if page.description %}{{ page.description }}{% else %}{{ config.description }}{% endif %}{% endblock description %}
+{% block canonical %}{{ page.permalink }}{% endblock canonical %}
+{% block og_title %}{{ page.title }}{% endblock og_title %}
+{% block og_description %}{% if page.description %}{{ page.description }}{% else %}{{ config.description }}{% endif %}{% endblock og_description %}
+{% block og_url %}{{ page.permalink }}{% endblock og_url %}
+{% block og_type %}article{% endblock og_type %}
+{% block og_extra %}{% if page.date %}{% endif %}{% endblock og_extra %}
+{% block twitter_title %}{{ page.title }}{% endblock twitter_title %}
+{% block twitter_description %}{% if page.description %}{{ page.description }}{% else %}{{ config.description }}{% endif %}{% endblock twitter_description %}
+
{% block content %}