Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ojroques/hugo-researcher.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Roques <ojroques@users.noreply.github.com>2022-10-10 10:53:41 +0300
committerGitHub <noreply@github.com>2022-10-10 10:53:41 +0300
commit97eea889a8ef47452a4ed1901d71cc8c0fd43115 (patch)
treeed9f3a2fdcf24483f1d737e4424b528e99a6ef2f
parentbd335ad38c469f448270dc99b338768ef1765e69 (diff)
parentca7f3c18578d84e2811916dc6b5ebbe831df654c (diff)
Merge pull request #32 from Sbozzolo/masterHEADmaster
Add option to ask crawlers to not index a page
-rw-r--r--layouts/partials/head.html4
1 files changed, 4 insertions, 0 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index b4c5357..f01e36b 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -25,4 +25,8 @@
{{ if not .Site.IsServer }}
{{ template "_internal/google_analytics.html" . }}
{{ end }}
+
+ {{ if .Params.noindex }}
+ <meta name="robots" content="noindex">
+ {{ end }}
</head>