Skip to content
Snippets Groups Projects
meta.html 675 B
Newer Older
<meta charset="utf-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

{{ with .Description }}
  <meta name="description" content="{{ . }}">
{{ else }}
  {{ if .IsPage }}
    <meta name="description" content="{{ .Summary }}">
  {{ else }}
    {{ with site.Params.description }}
      <meta name="description" content="{{ . }}">
    {{ end }}
  {{ end }}
{{ end }}

{{ if site.Params.schema }}
  {{ template "_internal/schema.html" . }}
{{ end }}

{{ if site.Params.opengraph }}
  {{ template "_internal/opengraph.html" . }}
{{ end }}

{{ if site.Params.twittercards }}
  {{ template "_internal/twitter_cards.html" . }}
{{ end }}

{{ hugo.Generator }}