mirror of
https://github.com/Noettore/cocoa-eh-hugo-theme.git
synced 2025-10-15 03:36:41 +02:00

* Dynamic resume link * More header changes * CSS for narrow hides * Fix syntax error in header files * Add transition for initials link * Link hover with transition * Add date in tooltip * Consistent colors * Font sizes * Icon margins HTTPS in JS correction to remove slashes
45 lines
1.2 KiB
HTML
45 lines
1.2 KiB
HTML
<!-- HTTPS -->
|
|
|
|
<script type="text/javascript">
|
|
var baseUrl = '{{ .Site.BaseUrl }}';
|
|
var host = baseUrl.substring(0, baseUrl.length - 1).replace(/\//g, '');
|
|
if ((host === window.location.host) && (window.location.protocol !== 'https:')) {
|
|
window.location.protocol = 'https';
|
|
}
|
|
</script>
|
|
|
|
<!-- CSS -->
|
|
|
|
{{ if eq true .Site.Params.CacheBuster }}
|
|
|
|
<link rel="stylesheet" href="/css/reset.css">
|
|
<link rel="stylesheet" href="/css/pygments.css">
|
|
<link rel="stylesheet" href="/css/main.css">
|
|
{{ if .Site.Params.WebfontsFile }}
|
|
<link rel="stylesheet" href="/{{ .Site.Params.WebfontsFile }}">
|
|
{{ end }}
|
|
|
|
{{ else }}
|
|
|
|
<link rel="stylesheet" href="/css/reset.css?{{ .Now.Unix }}">
|
|
<link rel="stylesheet" href="/css/pygments.css?{{ .Now.Unix }}">
|
|
<link rel="stylesheet" href="/css/main.css?{{ .Now.Unix }}">
|
|
{{ if .Site.Params.WebfontsFile }}
|
|
<link rel="stylesheet" href="/{{ .Site.Params.WebfontsFile }}?{{ .Now.Unix }}">
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
<!-- Icon -->
|
|
<link rel="shortcut icon"
|
|
{{ if .Site.Params.FaviconFile }}
|
|
href="/{{ .Site.Params.FaviconFile }}"
|
|
{{ else }}
|
|
href="/img/favicon.ico"
|
|
{{ end }}
|
|
>
|
|
|
|
<!--[if lt IE 9]>
|
|
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
|
<![endif]-->
|