hugo-PaperMod/layouts/robots.txt
2022-04-30 13:25:00 +02:00

14 lines
341 B
Plaintext

User-agent: *
{{- if hugo.IsProduction | or (eq site.Params.env "production") }}
{{- $noIndexPages := where .Site.Pages "Params.robotsNoIndex" true }}
{{- range $noIndexPages }}
Disallow: {{ .RelPermalink }}
{{- end }}
{{- if not $noIndexPages }}
Disallow:
{{- end }}
{{- else }}
Disallow: /
{{- end }}
Sitemap: {{ "sitemap.xml" | absURL }}