diff --git a/.eleventy.js b/.eleventy.js
index bccb9e2..6218859 100644
--- a/.eleventy.js
+++ b/.eleventy.js
@@ -9,6 +9,9 @@ export default function (eleventyConfig) {
eleventyConfig.addExtension("ntk", { key: "njk" });
+ // Footer copyright line; the site rebuilds nightly, so this stays current.
+ eleventyConfig.addGlobalData("currentYear", () => new Date().getFullYear());
+
let njkEnvironment = new Nunjucks.Environment(
new Nunjucks.FileSystemLoader("_includes")
);
diff --git a/_includes/footer.ntk b/_includes/footer.ntk
new file mode 100644
index 0000000..4ba47a4
--- /dev/null
+++ b/_includes/footer.ntk
@@ -0,0 +1,50 @@
+
diff --git a/_includes/main.ntk b/_includes/main.ntk
index c4950cf..b85d153 100644
--- a/_includes/main.ntk
+++ b/_includes/main.ntk
@@ -18,6 +18,9 @@
+
+
+
@@ -77,6 +80,9 @@
{% endif %}
{% endblock %}
+ {% if not noFooter %}
+ {% include "footer.ntk" %}
+ {% endif %}