From cdec55a137705c12ed0c5738680b0deacb5b5807 Mon Sep 17 00:00:00 2001
From: Ray <rwstorer@hotmail.com>
Date: Sun, 11 Jun 2023 02:28:04 +0000
Subject: [PATCH] fighting with no params code

---
 layouts/shortcodes/liteyoutube.html |    6 +++---
 exampleSite/go.sum                  |    2 ++
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/exampleSite/go.sum b/exampleSite/go.sum
index afef3b2..bb4ddac 100644
--- a/exampleSite/go.sum
+++ b/exampleSite/go.sum
@@ -38,3 +38,5 @@
 github.com/rwstorer/hugo-theme-compose v0.0.0-20230611013841-e25e31add480/go.mod h1:7TS3BoBV/IcLPRT2r7LyTyOqzsS5P5sXKlNpGgxdK/s=
 github.com/rwstorer/hugo-theme-compose v0.0.0-20230611014843-d3652998710e h1:X7/nJFMOqLwYy0a/QPHDxQ1Mq6hJHNI+Tv8xWyBU9Bk=
 github.com/rwstorer/hugo-theme-compose v0.0.0-20230611014843-d3652998710e/go.mod h1:7TS3BoBV/IcLPRT2r7LyTyOqzsS5P5sXKlNpGgxdK/s=
+github.com/rwstorer/hugo-theme-compose v0.0.0-20230611021301-f7396f1edb0b h1:y71DHDUESv7+42YRzsXdVoTxCDgvnw+I3Wrzjg9J1Mo=
+github.com/rwstorer/hugo-theme-compose v0.0.0-20230611021301-f7396f1edb0b/go.mod h1:7TS3BoBV/IcLPRT2r7LyTyOqzsS5P5sXKlNpGgxdK/s=
diff --git a/layouts/shortcodes/liteyoutube.html b/layouts/shortcodes/liteyoutube.html
index b2b4f6c..0364c24 100644
--- a/layouts/shortcodes/liteyoutube.html
+++ b/layouts/shortcodes/liteyoutube.html
@@ -1,11 +1,11 @@
 {{ if .IsNamedParams }} <!-- check if using named parameters or not -->
   {{ $videoid := .Get "videoid" }} <!-- required. -->
-  {{ $img := .Get "img"}} <!-- not required. The initial background image instead of a generated one. -->
+  {{ $img := .Get "img" }} <!-- not required. The initial background image instead of a generated one. -->
   {{ $params := .Get "params" }} <!-- not required. List of params here: https://developers.google.com/youtube/player_parameters -->
 {{ else }}
   {{ $videoid := .Get 0 }} <!-- required. -->
-  {{ $img := .Get 1}} <!-- not required. The initial background image instead of a generated one. -->
+  {{ $img := .Get 1 }} <!-- not required. The initial background image instead of a generated one. -->
   {{ $params := .Get 2 }} <!-- not required. List of params here: https://developers.google.com/youtube/player_parameters -->
 {{ end }}
-{{ $bkImg := absURL (printf "images/%s" $img) }}
+{{ with $img }} {{ $bkImg := absURL (printf "images/%s" $img) }} {{ end }}
 <lite-youtube videoid="{{$videoid}}"{{ with $bkImg }} style="background-image: url('{{ . }}')"{{ end }}{{ with $params }} params="{{ . }}"{{ end }}></lite-youtube>
\ No newline at end of file

--
Gitblit v1.10.0