From f9c9c23cdde45a37042799b02815d5c081b02743 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Sat, 24 Jul 2021 23:33:43 +0200 Subject: Regroup all static resources into the same folder (favicon and css) --- layouts/_default/baseof.html | 3 ++- static/favicon.ico | Bin 1150 -> 0 bytes static/static/favicon.ico | Bin 0 -> 1150 bytes 3 files changed, 2 insertions(+), 1 deletion(-) delete mode 100755 static/favicon.ico create mode 100755 static/static/favicon.ico diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 3a89fba..5b4f442 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -5,6 +5,7 @@ + {{ template "_internal/opengraph.html" . }} @@ -13,7 +14,7 @@ {{- $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 -}} + {{- $allCss := slice $base $header $home $pagination $footer | resources.Concat "static/all.css" | fingerprint | minify -}} {{ range .AlternativeOutputFormats -}} diff --git a/static/favicon.ico b/static/favicon.ico deleted file mode 100755 index 216330f..0000000 Binary files a/static/favicon.ico and /dev/null differ diff --git a/static/static/favicon.ico b/static/static/favicon.ico new file mode 100755 index 0000000..216330f Binary files /dev/null and b/static/static/favicon.ico differ -- cgit v1.2.3