We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, the page-no-index attribute does not apply to googlebot or bingbot:
page-no-index
googlebot
bingbot
docs-ui/src/partials/head-prelude.hbs
Lines 5 to 12 in 1f2107f
We should probably fix the condition:
{{#if (ne page.attributes.no-index undefined) }} <meta name="robots" content="noindex" /> <meta name="googlebot" content="noindex" /> <meta name="bingbot" content="noindex" /> {{else}} <meta name="robots" content="index, follow" /> <meta name="googlebot" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1" /> <meta name="bingbot" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1" /> {{/if}}
The text was updated successfully, but these errors were encountered:
resolves #31 noindex on googlebot and bingbot when page-no-index is d…
4531233
…efined
Merge pull request #32 from neo4j-documentation/issue-31-noindex-bot
f8406dc
resolves #31 noindex on googlebot and bingbot when page-no-index is defined
Successfully merging a pull request may close this issue.
Currently, the
page-no-index
attribute does not apply togooglebot
orbingbot
:docs-ui/src/partials/head-prelude.hbs
Lines 5 to 12 in 1f2107f
We should probably fix the condition:
The text was updated successfully, but these errors were encountered: