123456789101112131415161718192021222324 |
- <!DOCTYPE html>
- <html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}">
- <head>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <meta name="theme" content="hugo-academic" />
- {{ .Hugo.Generator }}
- {{ with .Site.Params.name }}<meta name="author" content="{{ . }}" />{{ end }}
- {{ with .Site.Params.role }}<meta name="description" content="{{ . }}" />{{ end }}
- <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.3.0/styles/github.min.css">
- <link rel="stylesheet" href="{{ .Site.BaseURL }}css/bootstrap.min.css" />
- <link rel="stylesheet" href="{{ .Site.BaseURL }}css/font-awesome.min.css" />
- <link rel="stylesheet" href="{{ .Site.BaseURL }}css/academicons.min.css" />
- <link rel="stylesheet" href="{{ .Site.BaseURL }}css/hugo-academic.css" />
- <link rel="shortcut icon" href="{{ .Site.BaseURL }}img/favicon.ico" type="image/x-icon">
- <link rel="canonical" href="{{ .Permalink }}">
- <title>{{ if not .IsHome }}{{ .Title }} | {{ end }}{{ .Site.Title }}</title>
- </head>
- <body>
|