Merge pull request #30790 from sftim/20211207_mark_only_live_site_indexable
Make only live website indexable
This commit is contained in:
@@ -1,6 +1,9 @@
|
||||
<!doctype html>
|
||||
<html lang="{{ .Site.Language.Lang }}" class="{{.Params.class}} no-js">
|
||||
<head>
|
||||
{{- if eq hugo.Environment "preview" -}}
|
||||
<!-- deploy preview -->
|
||||
{{- end -}}
|
||||
<head {{- if hugo.IsProduction -}}class="live-site"{{- end -}}>
|
||||
{{ partial "head.html" . }}
|
||||
</head>
|
||||
<body class="td-{{ .Kind }}{{- if ne (lower .Params.cid) "" -}}{{- printf " cid-%s" (lower .Params.cid) -}}{{- end -}}">
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{{- if eq (getenv "HUGO_ENV") "production" }}
|
||||
{{- if eq hugo.Environment "production" }}
|
||||
{{- $cssFilesFromConfig := site.Params.pushAssets.css -}}
|
||||
{{- $jsFilesFromConfig := site.Params.pushAssets.js -}}
|
||||
{{- $pages := site.RegularPages -}}
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
{{- $isBlogPost := eq .Section "blog" }}
|
||||
{{- $ogType := cond (.IsHome) "website" "article" }}
|
||||
<!-- per-page robot indexing controls -->
|
||||
{{- if hugo.IsProduction -}}
|
||||
<meta name="ROBOTS" content="INDEX, FOLLOW">
|
||||
{{- else -}}
|
||||
<meta name="ROBOTS" content="NOINDEX, NOFOLLOW">
|
||||
{{- end -}}
|
||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-36037335-10"></script>
|
||||
<script>
|
||||
@@ -19,11 +25,6 @@
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
{{ hugo.Generator }}
|
||||
{{ if eq (getenv "HUGO_ENV") "production" }}
|
||||
<META NAME="ROBOTS" CONTENT="INDEX, FOLLOW">
|
||||
{{ else }}
|
||||
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
||||
{{ end }}
|
||||
{{ range .AlternativeOutputFormats -}}
|
||||
<link rel="{{ .Rel }}" type="{{ .MediaType.Type }}" href="{{ .Permalink | safeURL }}">
|
||||
{{ end -}}
|
||||
@@ -33,7 +34,7 @@
|
||||
{{- template "_internal/google_news.html" . -}}
|
||||
{{- template "_internal/schema.html" . -}}
|
||||
{{- template "_internal/twitter_cards.html" . -}}
|
||||
{{ if eq (getenv "HUGO_ENV") "production" }}
|
||||
{{- if hugo.IsProduction -}}
|
||||
{{ template "_internal/google_analytics_async.html" . }}
|
||||
{{ end }}
|
||||
{{ partialCached "head-css.html" . "asdf" }}
|
||||
|
||||
Reference in New Issue
Block a user