header.html 1.3 KB

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta name="theme" content="hugo-academic">
  8. {{ .Hugo.Generator }}
  9. {{ with .Site.Params.name }}<meta name="author" content="{{ . }}">{{ end }}
  10. {{ with .Site.Params.role }}<meta name="description" content="{{ . }}">{{ end }}
  11. <link rel="stylesheet" href="{{ .Site.BaseURL }}css/highlight.min.css">
  12. <link rel="stylesheet" href="{{ .Site.BaseURL }}css/bootstrap.min.css">
  13. <link rel="stylesheet" href="{{ .Site.BaseURL }}css/font-awesome.min.css">
  14. <link rel="stylesheet" href="{{ .Site.BaseURL }}css/academicons.min.css">
  15. <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:400,700|Merriweather|Roboto+Mono">
  16. <link rel="stylesheet" href="{{ .Site.BaseURL }}css/hugo-academic.css">
  17. {{ range .Site.Params.custom_css }}
  18. <link rel="stylesheet" href="{{ $.Site.BaseURL }}css/{{ . }}">
  19. {{ end }}
  20. <link rel="shortcut icon" href="{{ .Site.BaseURL }}img/favicon.ico" type="image/x-icon">
  21. <link rel="canonical" href="{{ .Permalink }}">
  22. <title>{{ if not .IsHome }}{{ .Title }} | {{ end }}{{ .Site.Title }}</title>
  23. </head>
  24. <body id="top">