14 lines
341 B
Plaintext
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 }}
|