-
-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add additional video shortcode options
- Loading branch information
Showing
6 changed files
with
96 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,29 @@ | ||
<video controls> | ||
{% for source in sources -%} | ||
{% set type = source | split(pat=".") | last -%} | ||
<source src="{{ config.base_url | safe }}{{ page.path | safe }}{{ source | safe }}" type="{{ 'video/' ~ type }}" /> | ||
{%- if caption %}<figure class="fi{% if class %} {{class}}{% endif %}">{% endif -%} | ||
<video controls{% if class %} class="{{class}}"{% endif %}{% if w %} width="{{w}}"{% endif %}{% if h %} height="{{h}}"{% endif %}{% if autoplay %} autoplay{% endif %}{% if loop %} loop=true{% endif %}{% if muted %} muted=true{% endif %}> | ||
{% for src in sources -%} | ||
|
||
{%- set video = src | split(pat="/") | last %} | ||
{%- set dirtest = src | trim_start_matches(pat="./") %} | ||
{%- if dirtest is containing("/") %} {%- set reldir = true %} {%- endif %} | ||
{%- if page.path %}{%- set pagepath = page.path %}{%- elif section.path %}{%- set pagepath = section.path %}{%- endif %} | ||
|
||
{%- if src is starting_with("./") and reldir %} {# Relative Path #} | ||
{%- set path = src | trim_start_matches(pat="./") | split(pat="/") | slice(end=-1) | join(sep="/") | trim_start_matches(pat="/") %} | ||
{%- set path = path ~ "/" %} | ||
|
||
{%- elif src is starting_with("/") %} {# Root Path #} | ||
{%- set rootpath = src | split(pat="/") | slice(end=-1) | join(sep="/") %} | ||
{%- set path = config.base_url ~ rootpath ~ "/" %} | ||
|
||
{%- else %} {# Same Directory Path #} | ||
{%- set path = "" %} | ||
|
||
{%- endif %} | ||
|
||
{%- set type = src | split(pat=".") | last -%} | ||
{%- if type is matching("^mov$") %}{% set type = "quicktime" %}{% endif -%} | ||
<source src="{{ path | safe }}{{ video | safe }}" type="{{ 'video/' ~ type }}" /> | ||
{% endfor -%} | ||
Your browser doesn't support the video tag and/or the video formats in use here – sorry! | ||
</video> | ||
{%- if caption %}<figcaption>{{caption}}</figcaption></figure>{% endif -%} |