From 53733f7d389f84174b6c4294a24d3ab70b852d5d Mon Sep 17 00:00:00 2001 From: Thedro Neely Date: Sat, 2 Apr 2022 02:26:30 -0400 Subject: generators/hugo/layouts/shortcodes/video: Set defaults Use figcaption. --- app/views/index.view.php | 7 +++-- .../hugo/themes/tdro/layouts/shortcodes/video.html | 30 ++++++++++++++++------ public/css/tdro.css | 15 +++-------- 3 files changed, 30 insertions(+), 22 deletions(-) diff --git a/app/views/index.view.php b/app/views/index.view.php index 6bd5f58..7c02198 100644 --- a/app/views/index.view.php +++ b/app/views/index.view.php @@ -26,9 +26,12 @@ -
pipes.sh terminal screensaver
+
pipes.sh terminal screensaver
diff --git a/generators/hugo/themes/tdro/layouts/shortcodes/video.html b/generators/hugo/themes/tdro/layouts/shortcodes/video.html index 719e212..a0bf488 100644 --- a/generators/hugo/themes/tdro/layouts/shortcodes/video.html +++ b/generators/hugo/themes/tdro/layouts/shortcodes/video.html @@ -1,12 +1,26 @@ +{{- + $source := default + "https://raw.githubusercontent.com/benhosmer/HTML5-Test-Videos/9a6c2db46472454c634963cbeb0900fd37901fac/big_buck_bunny" + (.Get "source" | default (.Get 0)) +-}} +{{- $poster := default "" (.Get "poster" | default (.Get 1)) -}} +{{- $width := default "" (.Get "width" | default (.Get 2)) -}} +{{- $height := default "" (.Get "height" | default (.Get 3)) -}} +{{- $preload := default "none" (.Get "preload" | default (.Get 4)) -}} +{{- $options := default "" (.Get "options" | default (.Get 5)) -}} + -
{{ .Inner | markdownify }}
+
{{ .Inner | markdownify }}
diff --git a/public/css/tdro.css b/public/css/tdro.css index bd7dabe..acd5754 100644 --- a/public/css/tdro.css +++ b/public/css/tdro.css @@ -1926,20 +1926,11 @@ figure div { height: 0; } -figcaption code { - font-size: 1em; -} - figcaption, -video ~ footer, -video ~ footer code { - font-size: 0.9rem; -} - -figcaption, -video ~ footer { - margin-top: 1.5em; +figcaption code { + font-size: 0.95em; margin-bottom: 1em; + margin-top: 1.5em; text-align: center; } -- cgit v1.2.3