We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e24759f commit af119c2Copy full SHA for af119c2
docs/reference/index.md
@@ -259,7 +259,7 @@ e.g. to add indexing policies for search engines via the `robots` property:
259
{% extends "base.html" %}
260
261
{% block extrahead %}
262
- <meta property="robots" content="noindex, nofollow" />
+ <meta name="robots" content="noindex, nofollow" />
263
{% endblock %}
264
```
265
@@ -276,9 +276,9 @@ template override, e.g.:
276
277
278
{% if page and page.meta and page.meta.robots %}
279
- <meta property="robots" content="{{ page.meta.robots }}" />
+ <meta name="robots" content="{{ page.meta.robots }}" />
280
{% else %}
281
- <meta property="robots" content="index, follow" />
+ <meta name="robots" content="index, follow" />
282
{% endif %}
283
284
0 commit comments