diff options
author | Julien Dessaux | 2021-08-16 12:35:32 +0200 |
---|---|---|
committer | Julien Dessaux | 2021-08-16 12:35:32 +0200 |
commit | 78a6f5505d585fae4d32ae53304f7a1981263f4b (patch) | |
tree | f06b13877272ee11f6e6b4e115263326da4200f2 /layouts/_default/baseof.html | |
parent | Fix w3c css validator errors and updated fonts (diff) | |
download | www-78a6f5505d585fae4d32ae53304f7a1981263f4b.tar.gz www-78a6f5505d585fae4d32ae53304f7a1981263f4b.tar.bz2 www-78a6f5505d585fae4d32ae53304f7a1981263f4b.zip |
Switched to a solarized color scheme
Diffstat (limited to 'layouts/_default/baseof.html')
-rw-r--r-- | layouts/_default/baseof.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 5b4f442..07920c1 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -14,7 +14,8 @@ {{- $home := resources.Get "home.css" -}} {{- $pagination := resources.Get "pagination.css" -}} {{- $footer := resources.Get "footer.css" -}} - {{- $allCss := slice $base $header $home $pagination $footer | resources.Concat "static/all.css" | fingerprint | minify -}} + {{- $solarized := resources.Get "solarized.css" -}} + {{- $allCss := slice $base $header $home $pagination $footer $solarized | resources.Concat "static/all.css" | fingerprint | minify -}} <link rel="stylesheet" href="{{ $allCss.Permalink }}"> {{ range .AlternativeOutputFormats -}} |