diff options
author | Julien Dessaux | 2023-01-22 21:54:23 +0100 |
---|---|---|
committer | Julien Dessaux | 2023-01-22 21:58:05 +0100 |
commit | 7d34bfeeca80ac88005eaa3d5db6c6a99be09d8b (patch) | |
tree | 40c7864e95a88f80f5403b90089acf78068d4755 /layouts | |
parent | Typos (diff) | |
download | www-7d34bfeeca80ac88005eaa3d5db6c6a99be09d8b.tar.gz www-7d34bfeeca80ac88005eaa3d5db6c6a99be09d8b.tar.bz2 www-7d34bfeeca80ac88005eaa3d5db6c6a99be09d8b.zip |
Switched theme from solarized to selenized
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/404.html | 7 | ||||
-rw-r--r-- | layouts/_default/baseof.html | 7 |
2 files changed, 8 insertions, 6 deletions
diff --git a/layouts/404.html b/layouts/404.html index dcc5604..dfe20b2 100644 --- a/layouts/404.html +++ b/layouts/404.html @@ -10,12 +10,13 @@ {{ $base := resources.Get "base.css" -}} + {{- $code := resources.Get "code.css" -}} + {{- $footer := resources.Get "footer.css" -}} {{- $header := resources.Get "header.css" -}} {{- $home := resources.Get "home.css" -}} {{- $pagination := resources.Get "pagination.css" -}} - {{- $footer := resources.Get "footer.css" -}} - {{- $solarized := resources.Get "solarized.css" -}} - {{- $allCss := slice $base $header $home $pagination $footer $solarized | resources.Concat "static/all.css" | fingerprint | minify -}} + {{- $selenized := resources.Get "selenized.css" -}} + {{- $allCss := slice $base $code $footer $header $home $pagination $selenized | resources.Concat "static/all.css" | fingerprint | minify -}} <link rel="stylesheet" href="{{ $allCss.Permalink }}"> {{ range .AlternativeOutputFormats -}} diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 05345a3..239a5ab 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -10,12 +10,13 @@ {{ template "_internal/opengraph.html" . }} {{ $base := resources.Get "base.css" -}} + {{- $code := resources.Get "code.css" -}} + {{- $footer := resources.Get "footer.css" -}} {{- $header := resources.Get "header.css" -}} {{- $home := resources.Get "home.css" -}} {{- $pagination := resources.Get "pagination.css" -}} - {{- $footer := resources.Get "footer.css" -}} - {{- $solarized := resources.Get "solarized.css" -}} - {{- $allCss := slice $base $header $home $pagination $footer $solarized | resources.Concat "static/all.css" | fingerprint | minify -}} + {{- $selenized := resources.Get "selenized.css" -}} + {{- $allCss := slice $base $code $footer $header $home $pagination $selenized | resources.Concat "static/all.css" | fingerprint | minify -}} <link rel="stylesheet" href="{{ $allCss.Permalink }}"> {{ range .AlternativeOutputFormats -}} |