2018-11-24 21:02:48 +00:00
< head >
< meta http-equiv = "content-type" content = "text/html; charset=utf-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
< meta name = "description" content = "{{ if .IsNode }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ else }}{{ with .Description }}{{ . }}{{ end }}{{ end }}" >
2019-09-07 18:01:24 +00:00
{{hugo.Generator}}
2018-11-24 21:02:48 +00:00
< title > {{ if .IsHome }}{{ .Title }}{{ else }}{{ .Title }} · {{ .Site.Title }}{{ end }}< / title >
<!-- CSS -->
{{ $purecss := "https://cdnjs.cloudflare.com/ajax/libs/pure/1.0.0/" }}
< link rel = "stylesheet" href = "{{ $purecss }}pure-min.css" >
{{ "<!-- [if lte IE 8]>" | safeHTML }}
< link rel = "stylesheet" href = "{{ $purecss }}grids-responsive-old-ie-min.css" >
{{ "<![endif]--> " | safeHTML }}
{{ "<!-- [if gt IE 8]><! --> " | safeHTML }}
< link rel = "stylesheet" href = "{{ $purecss }}grids-responsive-min.css" >
{{ "<!-- <![endif] --> " | safeHTML }}
{{ "<!-- [if lte IE 8]>" | safeHTML }}
< link rel = "stylesheet" href = "/css/side-menu-old-ie.css" >
{{ "<![endif]--> " | safeHTML }}
{{ "<!-- [if gt IE 8]><! --> " | safeHTML }}
< link rel = "stylesheet" href = "/css/side-menu.css" >
{{ "<!-- <![endif] --> " | safeHTML }}
< link rel = "stylesheet" href = "/css/blackburn.css" >
<!-- Icons -->
< link rel = "stylesheet" href = "https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" >
<!-- Fonts -->
< link href = "https://fonts.googleapis.com/css?family=Raleway" rel = "stylesheet" type = "text/css" >
<!-- MathJax -->
< script src = "https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML" > < / script >
<!-- RSS -->
2019-09-07 18:01:24 +00:00
{{ if .OutputFormats.Get "RSS" }}
< link rel = "alternate" type = "application/rss+xml" title = "{{ .Site.Title }}"
href='{{ with .OutputFormats.Get "RSS" }}{{ .RelPermalink }}{{ end }}' />
2018-11-24 21:02:48 +00:00
{{ end }}
{{ with .Site.Params.highlightjs }}
< link rel = "stylesheet" href = "//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/{{ . }}.min.css" >
< script src = "//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js" > < / script >
{{ range $.Site.Params.highlightjs_extra_languages }}
< script src = "//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/languages/{{ . }}.min.js" > < / script >
{{ end }}
< script > hljs . initHighlightingOnLoad ( ) ; < / script >
{{ end }}
{{ partial "favicon.html" . }}
{{ range .Site.Params.custom_css }}
{{ if findRE "https?://" . }}
< link rel = "stylesheet" href = "{{ . }}" >
{{ else }}
< link rel = "stylesheet" href = "{{ $.Site.BaseURL }}{{ . }}" >
{{ end }}
{{ end }}
{{ range .Site.Params.custom_js }}
{{ if findRE "https?://" . }}
< script src = "{{ . }}" > < / script >
{{ else }}
< script src = "{{ $.Site.BaseURL }}{{ . }}" > < / script >
{{ end }}
{{ end }}
< / head >