URI: 
       Add deprecation warning to google_news template - hugo - [fork] hugo port for 9front
  HTML git clone git@git.drkhsh.at/hugo.git
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
   DIR commit 75a823a36a75781c0c5d89fe9f328e3b9322d95f
   DIR parent 5e0947c5b5a5ef243c7be8e958d357e8c5b320da
  HTML Author: Joe Mooring <joe.mooring@veriphor.com>
       Date:   Sat, 20 Nov 2021 17:49:47 -0800
       
       Add deprecation warning to google_news template
       
       Closes #9172
       
       Diffstat:
         M tpl/tplimpl/embedded/templates.aut… |      10 +++++++---
         M tpl/tplimpl/embedded/templates/goo… |      10 ++++++----
       
       2 files changed, 13 insertions(+), 7 deletions(-)
       ---
   DIR diff --git a/tpl/tplimpl/embedded/templates.autogen.go b/tpl/tplimpl/embedded/templates.autogen.go
       @@ -200,9 +200,13 @@ if (!doNotTrack) {
        {{ end }}
        {{- end -}}
        `},
       -        {`google_news.html`, `{{ if .IsPage }}{{ with .Params.news_keywords }}
       -  <meta name="news_keywords" content="{{ range $i, $kw := first 10 . }}{{ if $i }},{{ end }}{{ $kw }}{{ end }}" />
       -{{ end }}{{ end }}`},
       +        {`google_news.html`, `{{- warnf "The google_news internal template will be removed in a future release. Please remove calls to this template. See https://github.com/gohugoio/hugo/issues/9172 for additional information." -}}
       +{{- if .IsPage -}}
       +  {{- with .Params.news_keywords -}}
       +  <meta name="news_keywords" content="{{ range $i, $kw := first 10 . }}{{ if $i }},{{ end }}{{ $kw }}{{ end }}">
       +  {{- end -}}
       +{{- end -}}
       +`},
                {`opengraph.html`, `<meta property="og:title" content="{{ .Title }}" />
        <meta property="og:description" content="{{ with .Description }}{{ . }}{{ else }}{{if .IsPage}}{{ .Summary }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}{{ end }}" />
        <meta property="og:type" content="{{ if .IsPage }}article{{ else }}website{{ end }}" />
   DIR diff --git a/tpl/tplimpl/embedded/templates/google_news.html b/tpl/tplimpl/embedded/templates/google_news.html
       @@ -1,3 +1,6 @@
       -{{ if .IsPage }}{{ with .Params.news_keywords }}
       -  <meta name="news_keywords" content="{{ range $i, $kw := first 10 . }}{{ if $i }},{{ end }}{{ $kw }}{{ end }}" />
       -{{ end }}{{ end }}
       -\ No newline at end of file
       +{{- warnf "The google_news internal template will be removed in a future release. Please remove calls to this template. See https://github.com/gohugoio/hugo/issues/9172 for additional information." -}}
       +{{- if .IsPage -}}
       +  {{- with .Params.news_keywords -}}
       +  <meta name="news_keywords" content="{{ range $i, $kw := first 10 . }}{{ if $i }},{{ end }}{{ $kw }}{{ end }}">
       +  {{- end -}}
       +{{- end -}}