diff --git a/CHANGELOG.md b/CHANGELOG.md
index b261a2f..eac679a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,8 @@ unreleased
significant changes for end users:
+* allow to set additional meta tags via the `meta` configuration:
+ * expects an object, with the keys being the `name` and the values being the `content`
* we no longer bundle the --serve and --live-serve dependencies - you will be asked to install them
* reduce faucet dependencies
* update all dependencies
diff --git a/example/aiur.config.js b/example/aiur.config.js
index 0b99775..c95cb84 100644
--- a/example/aiur.config.js
+++ b/example/aiur.config.js
@@ -2,6 +2,9 @@
exports.title = "Example Styleguide";
exports.language = "en";
+exports.meta = {
+ robots: "noindex"
+};
exports.vendor = {
styles: [{
diff --git a/lib/generate_layout.js b/lib/generate_layout.js
index f59809e..c56246e 100644
--- a/lib/generate_layout.js
+++ b/lib/generate_layout.js
@@ -9,6 +9,7 @@ module.exports = async (navigation, manifest) => {