🐛 fix: Setting nofollow to all pages is bad practise, it hurts crawlability. Setting index is the default, so no need to implicitely set it.

This commit is contained in:
Niels Gouman 2025-01-16 13:36:21 +01:00 committed by GitHub
parent f440c011cc
commit f4be9545c6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -96,8 +96,6 @@
{% if is_404 %} {% if is_404 %}
<meta name="robots" content="noindex, follow" /> <meta name="robots" content="noindex, follow" />
{% else %}
<meta name="robots" content="index, nofollow" />
{% endif %} {% endif %}
<meta property="og:title" content="{{ page.title | default(value=config.title) | safe }}" /> <meta property="og:title" content="{{ page.title | default(value=config.title) | safe }}" />