From af119c2891dc77bb34d78355a12812e3a62a1883 Mon Sep 17 00:00:00 2001 From: Jens Bannmann Date: Wed, 22 Mar 2023 18:48:27 +0100 Subject: [PATCH] Fix examples to use correct HTML syntax The docs mention `` tags for robots, but the examples mistakenly use the attribute name `property` instead of the correct `name`. --- docs/reference/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/reference/index.md b/docs/reference/index.md index 49a90db22..ab5f7c477 100644 --- a/docs/reference/index.md +++ b/docs/reference/index.md @@ -259,7 +259,7 @@ e.g. to add indexing policies for search engines via the `robots` property: {% extends "base.html" %} {% block extrahead %} - + {% endblock %} ``` @@ -276,9 +276,9 @@ template override, e.g.: {% block extrahead %} {% if page and page.meta and page.meta.robots %} - + {% else %} - + {% endif %} {% endblock %} ```