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

github.com/saey55/hugo-elate-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/head.html')
-rwxr-xr-xlayouts/partials/head.html11
1 files changed, 10 insertions, 1 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index aff3a24..6e6d6c7 100755
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -69,9 +69,18 @@
-->
<link rel="stylesheet" href="css/style.css">
+ <!--
+ custom css files can be configured in config.toml:
+ [params]
+ custom_css = ["css/foo.css", "css/bar.css"]
+ -->
+ {{ range .Site.Params.custom_css }}
+ <link rel="stylesheet" href="{{ . }}">
+ {{ end }}
+
<!-- Modernizr JS -->
<script src="js/modernizr-2.6.2.min.js"></script>
<!-- FOR IE9 below -->
<!--[if lt IE 9]>
<script src="js/respond.min.js"></script>
- <![endif]--> \ No newline at end of file
+ <![endif]-->