diff --git a/__main__.py b/__main__.py
index 2c63d7f..4af8f15 100644
--- a/__main__.py
+++ b/__main__.py
@@ -47,7 +47,8 @@ def generate_home():
page="index.html"
title="PIAF"
- template = env.get_template("home.html", globals={"page": page, "title": title})
+ globals = dict(GLOBALS, page=page, title=title)
+ template = env.get_template("home.html", globals=globals)
write_html("index.html", template)
diff --git a/components/base.html b/components/base.html
index 2f3ca4c..3521360 100644
--- a/components/base.html
+++ b/components/base.html
@@ -6,9 +6,9 @@
+ content="{{KEYWORDS}}">
+ content="{{DESCRIPTION}}">