commit 11a5fd69c362abc6509ec20458258a7434081b42
parent f840e98d3ba03336eb61bfab7413ebd489ddef11
Author: FIGBERT <figbert@figbert.com>
Date: Thu, 27 Aug 2020 21:00:44 -0700
:art: Remove excess indentation from shortcodes
Diffstat:
4 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/templates/shortcodes/audio.html b/templates/shortcodes/audio.html
@@ -1,7 +1,7 @@
<audio controls>
{% for source in sources %}
- {% set type = source | split(pat=".") | last %}
- <source src="{{ source }}" type="{{ 'audio/' ~ type }}">
+ {% set type = source | split(pat=".") | last %}
+ <source src="{{ source }}" type="{{ 'audio/' ~ type }}">
{% endfor %}
Your browser doesn't support the audio tag and/or the audio formats in use here – sorry!
</audio>
diff --git a/templates/shortcodes/gif.html b/templates/shortcodes/gif.html
@@ -1,7 +1,7 @@
<video autoplay loop muted playsinline>
{% for source in sources %}
- {% set type = source | split(pat=".") | last %}
- <source src="{{ source }}" type="{{ 'video/' ~ type }}">
+ {% set type = source | split(pat=".") | last %}
+ <source src="{{ source }}" type="{{ 'video/' ~ type }}">
{% endfor %}
Your browser doesn't support the video tag, which I use in place of .gifs, and/or the video formats in use here – sorry!
</video>
diff --git a/templates/shortcodes/image.html b/templates/shortcodes/image.html
@@ -1,7 +1,7 @@
<picture>
{% for source in sources %}
- {% set type = source | split(pat=".") | last %}
- <source srcset="{{ source }}" type="{{ 'img/' ~ type }}">
+ {% set type = source | split(pat=".") | last %}
+ <source srcset="{{ source }}" type="{{ 'img/' ~ type }}">
{% endfor %}
<img src="{{ fallback_path }}" alt="{{ fallback_alt }}"/>
</picture>
diff --git a/templates/shortcodes/video.html b/templates/shortcodes/video.html
@@ -1,7 +1,7 @@
<video controls>
{% for source in sources %}
- {% set type = source | split(pat=".") | last %}
- <source src="{{ source }}" type="{{ 'video/' ~ type }}">
+ {% set type = source | split(pat=".") | last %}
+ <source src="{{ source }}" type="{{ 'video/' ~ type }}">
{% endfor %}
Your browser doesn't support the video tag and/or the video formats in use here – sorry!
</video>