diff --git a/templates/base.html b/templates/base.html
index 4a7dbfd..cda5ece 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -6,6 +6,12 @@
+
+
+ {% block meta %}
+
+
+ {% endblock meta %}
{% block title %}{{ config.title }}{% endblock title %}
diff --git a/templates/page.html b/templates/page.html
index 03246a8..78d5aac 100644
--- a/templates/page.html
+++ b/templates/page.html
@@ -1,6 +1,13 @@
{% extends "base.html" %}
{% import "macros/icons.html" as icons %}
+{% block meta %}
+
+{% endblock meta %}
+
+
+
+
{% block title %}
{{ page.title }} - {{ config.title }}
{% endblock title %}