From 14f3791336463c2303ce2266d031c4fca7e3b7d3 Mon Sep 17 00:00:00 2001 From: xdavidwu Date: Sun, 24 Apr 2022 02:12:19 +0800 Subject: [PATCH] profile, footer: remove nofollow if there is a link, it is indeed an endorsement and should be crawled --- _includes/author-profile.html | 2 +- _includes/footer.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_includes/author-profile.html b/_includes/author-profile.html index dc5ff9e..545bc9f 100644 --- a/_includes/author-profile.html +++ b/_includes/author-profile.html @@ -41,7 +41,7 @@ {% if author.links %} {% for link in author.links %} {% if link.label and link.url %} -
  • {{ link.label }}
  • +
  • {{ link.label }}
  • {% endif %} {% endfor %} {% endif %} diff --git a/_includes/footer.html b/_includes/footer.html index ecfee88..976d30e 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -3,7 +3,7 @@ {% if site.footer.links %} {% for link in site.footer.links %} {% if link.label and link.url %} -
  • {{ link.label }}
  • +
  • {{ link.label }}
  • {% endif %} {% endfor %} {% endif %} -- 2.43.0