header.html 758 B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <html lang="{{ .Site.LanguageCode | default "it" }}">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <title>{{ .Title }}</title>
  8. {{ template "_internal/opengraph.html" . }}
  9. {{ with .Site.Params.description }}
  10. <meta name="description" content="{{ . }}">
  11. {{ end }}
  12. {{ with .Site.Params.author }}
  13. <meta name="author" content="{{ . }}">
  14. {{ end }}
  15. <link rel="stylesheet" href="{{ .Site.BaseURL }}css/style.css">
  16. {{ if .RSSLink -}}
  17. <link href="{{ .RSSLink }}" rel="feed" type="application/rss+xml" title="{{ .Site.Title }}">
  18. {{- end }}
  19. {{ .Hugo.Generator }}
  20. </head>
  21. <body>