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

github.com/mattstratton/castanet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason van Gumster <jason@monsterjavaguns.com>2017-03-11 15:35:13 +0300
committerJason van Gumster <jason@monsterjavaguns.com>2017-03-11 15:53:01 +0300
commitae70818418a4ed28c4b858e0a6b5207ad4b37e6b (patch)
tree81b328765eba920b05627a8c22b081e89043378e /layouts/partials
parenta3e1ea36385bfc5f386d8e1fd2b13e6359ea4b14 (diff)
Add capability for users to include their own custom CSS overrides.
Diffstat (limited to 'layouts/partials')
-rw-r--r--layouts/partials/head_includes.html4
1 files changed, 4 insertions, 0 deletions
diff --git a/layouts/partials/head_includes.html b/layouts/partials/head_includes.html
index f8464e5..5c3c329 100644
--- a/layouts/partials/head_includes.html
+++ b/layouts/partials/head_includes.html
@@ -10,3 +10,7 @@
<link href="https://fonts.googleapis.com/css?family=Lato|Raleway" rel="stylesheet">
<link href="{{ .Site.BaseURL }}css/jssocials.css" rel="stylesheet" type="text/css" />
<link href="{{ .Site.BaseURL }}css/jssocials-theme-plain.css" rel="stylesheet" type="text/css" />
+<!-- Custom CSS -->
+{{ range .Site.Params.custom_css }}
+ <link rel="stylesheet" href="{{ $.Site.BaseURL }}{{ . }}">
+{{ end }}