File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -259,7 +259,7 @@ e.g. to add indexing policies for search engines via the `robots` property:
259
259
{% extends "base.html" %}
260
260
261
261
{% block extrahead %}
262
- <meta property ="robots" content="noindex, nofollow" />
262
+ <meta name ="robots" content="noindex, nofollow" />
263
263
{% endblock %}
264
264
` ` `
265
265
@@ -276,9 +276,9 @@ template override, e.g.:
276
276
277
277
{% block extrahead %}
278
278
{% if page and page.meta and page.meta.robots %}
279
- <meta property ="robots" content="{{ page.meta.robots }}" />
279
+ <meta name ="robots" content="{{ page.meta.robots }}" />
280
280
{% else %}
281
- <meta property ="robots" content="index, follow" />
281
+ <meta name ="robots" content="index, follow" />
282
282
{% endif %}
283
283
{% endblock %}
284
284
` ` `
You can’t perform that action at this time.
0 commit comments