From 9a89df6b8ecdc6acf5fef8b7faf6e0ed2f69d7a8 Mon Sep 17 00:00:00 2001 From: Pr0x1mas <50422789+Pr0x1mas@users.noreply.github.com> Date: Thu, 18 Nov 2021 07:17:06 +0000 Subject: [PATCH] Fix privacy policy link (#1931) The link to the privact policy was loading the fourth title because `titles[3]` is gonna be the fourth element in the array. Since there are only three in the array and the third in `en_gb` is 'Privacy Policy', I'm gonna assume that it's meant to be `titles[2]`. I make this mistake a lot myself. --- _includes/footer.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/footer.html b/_includes/footer.html index e5658cce42..9272ac351d 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -2,4 +2,4 @@ {% assign split_path = page.path | split: "/" %} {% assign locale = split_path[1] %} {% assign titles = site.data.navigation[locale].footer %} - +