hugo

Unnamed repository; edit this file 'description' to name the repository.

git clone git://git.shimmy1996.com/hugo.git
commit 14705ecead09a0ad8dfa4de2d9b5ba9188c32d07
parent 69ee6b41e36625595e2bcabcde0bc58663e5b93c
Author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Date:   Tue, 22 May 2018 09:11:34 +0200

tpl: Add another class and an id to youtube_simple

To provide some more styling options.

See #4616

Diffstat:
Mtpl/tplimpl/embedded/templates.autogen.go | 4+++-
Mtpl/tplimpl/embedded/templates/shortcodes/youtube_simple.html | 4+++-
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/tpl/tplimpl/embedded/templates.autogen.go b/tpl/tplimpl/embedded/templates.autogen.go
@@ -341,7 +341,9 @@ M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.5
 {{/* If class is set, assume the user wants to provide his own styles. */}}
 {{ template "__h_simple_css" $ }}
 {{ end }}
-<div class="{{ $class }}">
+{{ $secondClass := "s_youtube_simple" }}
+{{ $divID := printf "%s_%d" $secondClass (add $.Ordinal 1) }}
+<div class="{{ $secondClass }} {{ $class }}" id="{{ $divID }}">
 {{ $tb := printf "//i.ytimg.com/vi/%s/" $id }}
 <a href="//youtube.com/watch?v={{ $id | safeHTMLAttr }}" target="_blank">
      <img src="{{ printf "%smaxresdefault.jpg" $tb }}" srcset="{{ printf "%shqdefault.jpg" $tb }} 1x {{ printf "%smaxresdefault.jpg" $tb }} 2x" alt="Video">
diff --git a/tpl/tplimpl/embedded/templates/shortcodes/youtube_simple.html b/tpl/tplimpl/embedded/templates/shortcodes/youtube_simple.html
@@ -6,7 +6,9 @@
 {{/* If class is set, assume the user wants to provide his own styles. */}}
 {{ template "__h_simple_css" $ }}
 {{ end }}
-<div class="{{ $class }}">
+{{ $secondClass := "s_youtube_simple" }}
+{{ $divID := printf "%s_%d" $secondClass (add $.Ordinal 1) }}
+<div class="{{ $secondClass }} {{ $class }}" id="{{ $divID }}">
 {{ $tb := printf "//i.ytimg.com/vi/%s/" $id }}
 <a href="//youtube.com/watch?v={{ $id | safeHTMLAttr }}" target="_blank">
      <img src="{{ printf "%smaxresdefault.jpg" $tb }}" srcset="{{ printf "%shqdefault.jpg" $tb }} 1x {{ printf "%smaxresdefault.jpg" $tb }} 2x" alt="Video">