From 807a396055eba52bb72b1de6b37578d3af0eb646 Mon Sep 17 00:00:00 2001 From: Lucas Mayall Date: Sun, 25 Feb 2024 16:34:48 -0600 Subject: [PATCH] Fix footer link using wrong entry variable 'link' instead of correct 'url' --- src/_includes/components/footer.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_includes/components/footer.html b/src/_includes/components/footer.html index 5d34eb3..e24b4aa 100644 --- a/src/_includes/components/footer.html +++ b/src/_includes/components/footer.html @@ -12,7 +12,7 @@ {% set navPages = collections.all | eleventyNavigation %} {% for entry in navPages %}
  • - {{ entry.key }} + {{ entry.key }}
  • {% endfor %}