You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
1.5 KiB

  1. <!DOCTYPE html>
  2. <html {{ with .Site.LanguageCode }}lang="{{ . }}"{{ end }}>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. {{ with .Site.Params.name }}<meta name="author" content="{{ . }}">{{ end }}
  8. {{ with .Site.Params.description }}<meta name="description" content="{{ . }}">{{ end }}
  9. {{ .Hugo.Generator }}
  10. <title>{{ if .IsHome }}{{ .Title }}{{ else }}{{ .Title }} &middot; {{ .Site.Title }}{{ end }}</title>
  11. <link rel="shortcut icon" href="{{ .Site.BaseURL }}images/favicon.ico">
  12. <link rel="stylesheet" href="{{ .Site.BaseURL }}css/style.css">
  13. <link rel="stylesheet" href="{{ .Site.BaseURL }}css/highlight.css">
  14. {{ range .Site.Params.customCSS }}
  15. <link rel="stylesheet" href="{{ $.Site.BaseURL }}{{ . }}">
  16. {{ end }}
  17. {{ if eq .Site.Params.iconFont "font-awesome" }}
  18. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css">
  19. {{ else }}
  20. <link rel="stylesheet" href="{{ .Site.BaseURL }}css/monosocialiconsfont.css">
  21. {{ end }}
  22. {{ if .Site.Params.enableRSS }}
  23. <link href="{{ .Site.RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
  24. {{ end }}
  25. {{ template "_internal/opengraph.html" . }}
  26. {{ template "_internal/google_news.html" . }}
  27. {{ template "_internal/schema.html" . }}
  28. {{ template "_internal/twitter_cards.html" . }}
  29. </head>