diff --git a/assets/afbeeldingen/logo/nluug-logo.jpg b/assets/afbeeldingen/logo/nluug-logo.jpg
new file mode 100644
index 0000000..b433d36
Binary files /dev/null and b/assets/afbeeldingen/logo/nluug-logo.jpg differ
diff --git a/assets/afbeeldingen/logo/nluug-logo.webp b/assets/afbeeldingen/logo/nluug-logo.webp
new file mode 100644
index 0000000..f3fab22
Binary files /dev/null and b/assets/afbeeldingen/logo/nluug-logo.webp differ
diff --git a/themes/nluug/layouts/partials/header.html b/themes/nluug/layouts/partials/header.html
index 38f2f78..6877705 100644
--- a/themes/nluug/layouts/partials/header.html
+++ b/themes/nluug/layouts/partials/header.html
@@ -6,8 +6,39 @@
{{ $logoresource := resources.Get (.Site.Params.logoNormal | replaceRE "^/" "") }}
-
+
+
+
+ {{ $isJPG := eq (path.Ext $logoresource) ".jpg" }}
+ {{ $isPNG := eq (path.Ext $logoresource) ".png" }}
+ {{ if ($isJPG) -}}
+ {{ $webpPath:= replace $logoresource ".jpg" ".webp" }}
+ {{ $webpPathStatic:= printf "%s" $webpPath }}
+
+ {{ if (fileExists $webpPathStatic) -}}
+
+ {{- end }}
+ {{- end }}
+
+ {{ if ($isPNG) -}}
+ {{ $webpPath:= replace $logoresource ".png" ".webp" }}
+ {{ $webpPathStatic:= printf "%s" $webpPath }}
+
+ {{ if (fileExists $webpPathStatic) -}}
+
+ {{- end }}
+ {{- end }}
+
+
+
+
+
+
+