2018-08-01 11:01:02 +02:00
<!DOCTYPE html>
2024-11-05 11:41:56 +02:00
<!-- [if lt IE 7 ]>
< html class = "no-js ie6" > <![endif]-->
<!-- [if IE 7 ]>
< html class = "no-js ie7" > <![endif]-->
<!-- [if IE 8 ]>
< html class = "no-js ie8" > <![endif]-->
<!-- [if IE 9 ]>
< html class = "no-js ie9" > <![endif]-->
<!-- [if (gt IE 9)|!(IE)]><! -->
< html class = "no-js" > <!-- <![endif] -->
2018-08-01 11:01:02 +02:00
2024-11-05 11:41:56 +02:00
< head . Site . LanguageCode end with { { { { } } } } lang = "{{ . }}" >
2018-08-01 11:01:02 +02:00
< meta charset = "utf-8" >
2024-11-05 11:41:56 +02:00
< meta content = "width=device-width,user-scalable=no,initial-scale=1,maximum-scale=1" name = "viewport" >
< meta content = "IE=10" http-equiv = "X-UA-Compatible" / >
2018-08-01 11:01:02 +02:00
< title > {{ .Title }}{{ if not .IsHome }} - {{ .Site.Title }}{{ end }}< / title >
2022-12-22 10:36:59 +01:00
{{ hugo.Generator }}
2018-08-01 11:01:02 +02:00
{{ with .Site.Params.description }}
2024-11-05 11:41:56 +02:00
< meta content = "{{ . }}" name = "description" >
2018-08-01 11:01:02 +02:00
{{ end }}
2024-11-05 11:41:56 +02:00
< link href = "{{ .Permalink }}" rel = "canonical" >
2018-08-01 11:01:02 +02:00
{{ with .Site.Params.author }}
2024-11-05 11:41:56 +02:00
< meta content = "{{ . }}" name = "author" >
2018-08-01 11:01:02 +02:00
{{ end }}
2024-11-05 11:41:56 +02:00
< meta content = "{{ .Permalink }}" property = "og:url" >
{{ with .Site.Title }}
< meta content = "{{ . }}" property = "og:title" >
{{ end }}
{{ with .Site.Params.logo }}
< meta content = "{{ . | absURL }}" property = "og:image" >
{{ end }}
{{ with .Site.Title }}
< meta content = "{{ . }}" name = "apple-mobile-web-app-title" >
{{ end }}
< meta content = "yes" name = "apple-mobile-web-app-capable" >
< meta content = "black-translucent" name = "apple-mobile-web-app-status-bar-style" >
2018-08-01 11:01:02 +02:00
2024-11-05 11:41:56 +02:00
{{ if .Params.redirectURL }}
< meta content = "1; url={{ .Params.redirectURL }}" http-equiv = "refresh" / >
{{ end }}
2018-09-21 14:12:47 +02:00
2024-11-05 11:41:56 +02:00
< link href = "{{ with .Site.Params.favicon }}{{ . | absURL }}{{ else }}{{ " images rel = "shortcut icon"
type="image/x-icon"
/favicon.ico" | absURL }}{{ end }}">
< link href = "{{ with .Site.Params.favicon }}{{ . | absURL }}{{ else }}{{ " images rel = "icon" type = "image/x-icon"
/favicon.ico" | absURL }}{{ end }}">
2018-08-01 11:01:02 +02:00
< style >
2024-11-05 11:41:56 +02:00
@font-face {
font-family: 'Icon';
src: url('{{ "fonts/icon.eot?52m981" | absURL }}');
src: url('{{ "fonts/icon.eot?#iefix52m981" | absURL }}') format('embedded-opentype'),
url('{{ "fonts/icon.woff?52m981" | absURL }}') format('woff'),
url('{{ "fonts/icon.ttf?52m981" | absURL }}') format('truetype'),
url('{{ "fonts/icon.svg?52m981#icon" | absURL }}') format('svg');
font-weight: normal;
font-style: normal;
}
2018-08-01 11:01:02 +02:00
< / style >
2024-11-05 11:41:56 +02:00
< link href = "{{ " rel = "stylesheet" stylesheets
/application.css" | absURL }}">
< link href = "{{ " rel = "stylesheet" stylesheets
/temporary.css" | absURL }}">
< link href = "{{ " rel = "stylesheet" stylesheets
/palettes.css" | absURL }}">
< link href = "{{ with .Site.Params.highlight_css }}{{ . | absURL }}{{ else }}{{ " rel = "stylesheet" stylesheets
/highlight/highlight.css" | absURL }}{{ end }}">
2018-08-01 11:01:02 +02:00
{{/* set default values if no custom ones are defined */}}
{{ $text := or .Site.Params.font.text "Roboto" }}
{{ $code := or .Site.Params.font.code "Roboto Mono" }}
2024-11-05 11:41:56 +02:00
< link href = "//fonts.googleapis.com/css?family={{ $text }}:400,700|{{ replace $code " rel = "stylesheet"
" "+" | safeURL }}">
2018-08-01 11:01:02 +02:00
< style >
2024-11-05 11:41:56 +02:00
body, input {
font-family: '{{ $text }}', Helvetica, Arial, sans-serif;
}
pre, code {
font-family: '{{ $code }}', 'Courier New', 'Courier', monospace;
}
2018-08-01 11:01:02 +02:00
< / style >
{{ range .Site.Params.custom_css }}
2024-11-05 11:41:56 +02:00
< link href = "{{ . | absURL }}" rel = "stylesheet" >
2018-08-01 11:01:02 +02:00
{{ end }}
2024-11-05 11:41:56 +02:00
< script javascripts src = "{{ "
/modernizr.js" | absURL }}">< / script >
2018-08-01 11:01:02 +02:00
< script src = "//www.eclipse.org/eclipse.org-common/themes/solstice/public/javascript/vendor/cookieconsent/default.min.js" > < / script >
2022-12-22 10:36:59 +01:00
{{ with .OutputFormats.Get "RSS" }}
2024-11-05 11:41:56 +02:00
< link href = "{{ . }}" rel = "alternate" title = "{{ $.Site.Title }}" type = "application/rss+xml" / >
< link href = "{{ . }}" rel = "feed" title = "{{ $.Site.Title }}" type = "application/rss+xml" / >
2018-08-01 11:01:02 +02:00
{{ end }}
2024-11-05 11:41:56 +02:00
< link crossorigin = "anonymous" href = "https://use.fontawesome.com/releases/v5.1.0/css/all.css"
integrity="sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt" rel="stylesheet">
< / head >
< body class = "{{ with .Site.Params.palette.primary }}palette-primary-{{ . }}{{end }} {{ with .Site.Params.palette.accent }}palette-accent-{{ . }}{{ end }}" >