diff options
author | Julien Dessaux | 2021-09-01 14:56:43 +0200 |
---|---|---|
committer | Julien Dessaux | 2021-09-01 14:56:43 +0200 |
commit | 88aec26bd50ddb6f6e59409eb8148744e53fe5a2 (patch) | |
tree | 77a337272ab8d1f0cce81e06a1b952ba3b90baa9 /layouts | |
parent | Added kubernetes evicted pods article (diff) | |
download | www-88aec26bd50ddb6f6e59409eb8148744e53fe5a2.tar.gz www-88aec26bd50ddb6f6e59409eb8148744e53fe5a2.tar.bz2 www-88aec26bd50ddb6f6e59409eb8148744e53fe5a2.zip |
Fixed 404 page that did not get the new solarized css
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/404.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/layouts/404.html b/layouts/404.html index 68c1f1d..6560c4f 100644 --- a/layouts/404.html +++ b/layouts/404.html @@ -9,7 +9,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 "css/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 }}"> <title>Page Not Found</title> |