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.

23 lines
1.1 KiB

  1. <!DOCTYPE html>
  2. <html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ 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. <meta name="author" content="{{ with .Site.Params.name }}{{ . }}{{ end }}">
  8. <meta name="description" content="{{ with .Site.Params.description }}{{ . }}{{ end }}">
  9. {{ .Hugo.Generator }}
  10. <title>{{ .Title }} &middot; {{ .Site.Title }}</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. {{ if eq .Site.Params.iconFont "font-awesome" }}
  15. <link rel="stylesheet" href="{{ .Site.BaseURL }}fontawesome/css/font-awesome.min.css">
  16. {{ else }}
  17. <link rel="stylesheet" href="{{ .Site.BaseURL }}css/monosocialiconsfont.css">
  18. {{ end }}
  19. {{ if .Site.Params.enableRSS }}
  20. <link href="{{ .Site.RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
  21. {{ end }}
  22. </head>