Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/aerohub/hugo-identity-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Grosser <development@stp-ip.net>2017-04-11 22:58:12 +0300
committerMichael Grosser <development@stp-ip.net>2017-04-11 22:58:12 +0300
commit4a645737ed39fa41c56422ecb96f294f4da07848 (patch)
tree3d8fa158e3a37be4814c4c51e884c07a0741cb45
parentb2c0b7927c7c3eb2966164a42509dd5ec5502eb5 (diff)
Delay custom script loading
-rw-r--r--layouts/partials/header.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index bbdf19a..6c84fae 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -17,10 +17,6 @@
{{ end }}
<link rel="apple-touch-icon-precomposed" href="/images/icons/{{ .Site.Params.appleicon }}" />
- {{ range .Site.Params.custom_css }}
- <link rel="stylesheet" href="{{ . | absURL }}">
- {{ end }}
-
<link rel="stylesheet" href="/assets/css/main.css" />
{{ if not .Site.Params.custom_background }}
@@ -31,6 +27,10 @@
<link rel="stylesheet" href="/assets/css/font-awesome.min.css" />
{{ end }}
+ {{ range .Site.Params.custom_css }}
+ <link rel="stylesheet" href="{{ . | absURL }}">
+ {{ end }}
+
<!--[if lte IE 8]><script src="/assets/js/html5shiv.js"></script><![endif]-->
<!--[if lte IE 8]><link rel="stylesheet" href="/assets/css/ie8.css" /><![endif]-->
<!--[if lte IE 9]><link rel="stylesheet" href="/assets/css/ie9.css" /><![endif]-->