-
-
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.
- Loading branch information
Showing
7 changed files
with
245 additions
and
78 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,29 @@ | ||
<audio controls> | ||
{% for source in sources -%} | ||
{% set type = source | split(pat=".") | last -%} | ||
<source src="{{ config.base_url | safe }}{{ page.path | safe }}{{ source | safe }}" type="{{ 'audio/' ~ type }}" /> | ||
{%- if caption %}<figure class="fi{% if class %} {{class}}{% endif %}">{% endif -%} | ||
<audio controls{% if class %} class="{{class}}"{% endif %}{% if autoplay %} autoplay{% endif %}{% if loop %} loop{% endif %}{% if muted %} muted{% endif %}{% if playsinline %} playsinline{% endif %}> | ||
{% for src in sources -%} | ||
|
||
{%- set file = 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 }}{{ file | safe }}" type="{{ 'audio/' ~ type }}" /> | ||
{% endfor -%} | ||
Your browser doesn't support the audio tag and/or the audio formats in use here – sorry! | ||
</audio> | ||
{%- if caption %}<figcaption>{{caption}}</figcaption></figure>{% endif -%} |
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 autoplay loop muted playsinline> | ||
{% 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 %} autoplay loop muted playsinline> | ||
{% 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, which I use in place of .gifs, and/or the video formats in use here – sorry! | ||
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 -%} |
Oops, something went wrong.