diff --git a/_includes/head.html b/_includes/head.html
index 62bd767..22d987a 100644
--- a/_includes/head.html
+++ b/_includes/head.html
@@ -6,6 +6,29 @@
+
+ {% if page.title %}
+
+
+
+ {% else %}
+
+
+
+ {% endif %}
+ {% if page.date %}
+
+ {% endif %}
+
+ {% if page.tags %}
+
+ {% for tag in page.tags %}
+
+ {% endfor %}
+ {% endif %}
+ {% if author %}
+
+ {% endif %}
{% asset main.css %}
{% asset fa-svg-with-js.css %}
diff --git a/_layouts/post.html b/_layouts/post.html
index 72bb15b..94b82c9 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -1,6 +1,11 @@
---
layout: default
---
+{% if page.date_modified %}
+{% assign modified = page.date_modified %}
+{% else %}
+{% assign modified = page.date %}
+{% endif %}