Files
cocoa-eh-hugo-theme/layouts/partials/head_includes.html
Nishanth Shanmugham 83bf38ddb2 Orange colors
* Add Open Sans to the stack
2015-10-31 16:07:06 -05:00

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]-->