Get episodes from new structure
This commit is contained in:
parent
d37791aea5
commit
c8d48079d3
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
.idea
|
||||||
|
**/*.zip
|
14
src/_episode.liquid
Normal file
14
src/_episode.liquid
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{%- if post.episode %}
|
||||||
|
{%- assign media = post.episode.value.media -%}
|
||||||
|
<aside class="podcast">
|
||||||
|
<p class="text-center"><strong>Listen While<br>You Read</strong></p>
|
||||||
|
<audio controls onplaying="awftw.countPlay('{{ media }}')">
|
||||||
|
<source src="https://files.bitbadger.solutions/devotions/{{ media }}">
|
||||||
|
</audio>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="dl" href="https://pdcst.click/c/awftw/files.bitbadger.solutions/devotions/{{ media }}" download>
|
||||||
|
<i class="fa fa-download" title="Download Audio"></i>
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</aside>
|
||||||
|
{%- endif %}
|
|
@ -19,20 +19,7 @@
|
||||||
<i class="fa fa-calendar" title="Date"></i> {{ post.published_on | date: "dddd, MMMM d, yyyy" }}
|
<i class="fa fa-calendar" title="Date"></i> {{ post.published_on | date: "dddd, MMMM d, yyyy" }}
|
||||||
{% if logged_on %} • <a href="{{ post | edit_post_link }}">Edit Post</a>{% endif %}
|
{% if logged_on %} • <a href="{{ post | edit_post_link }}">Edit Post</a>{% endif %}
|
||||||
</p>
|
</p>
|
||||||
{%- assign media = post.metadata | value: "episode_media_file" -%}
|
{% include_template "_episode" %}
|
||||||
{%- unless media == "-- episode_media_file not found --" %}
|
|
||||||
<aside class="podcast">
|
|
||||||
<p class="text-center"><strong>Listen While<br>You Read</strong></p>
|
|
||||||
<audio controls onplaying="awftw.countPlay('{{ media }}')">
|
|
||||||
<source src="https://files.bitbadger.solutions/devotions/{{ media }}">
|
|
||||||
</audio>
|
|
||||||
<p class="text-center">
|
|
||||||
<a class="dl" href="https://pdcst.click/c/awftw/files.bitbadger.solutions/devotions/{{ media }}" download>
|
|
||||||
<i class="fa fa-download" title="Download Audio"></i>
|
|
||||||
</a>
|
|
||||||
</p>
|
|
||||||
</aside>
|
|
||||||
{%- endunless %}
|
|
||||||
{{ post.text }}
|
{{ post.text }}
|
||||||
</article>
|
</article>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
|
@ -4,20 +4,7 @@
|
||||||
<article class="item">
|
<article class="item">
|
||||||
<h1 class="item-heading">{{ post.title }}</h1>
|
<h1 class="item-heading">{{ post.title }}</h1>
|
||||||
{%- if logged_on %}<p class="item-meta"><a href="{{ post | edit_post_link }}">Edit Post</a></p>{% endif %}
|
{%- if logged_on %}<p class="item-meta"><a href="{{ post | edit_post_link }}">Edit Post</a></p>{% endif %}
|
||||||
{% assign media = post.metadata | value: "episode_media_file" %}
|
{% include_template "_episode" %}
|
||||||
{%- unless media == "-- episode_media_file not found --" %}
|
|
||||||
<aside class="podcast">
|
|
||||||
<p class="text-center"><strong>Listen While<br>You Read</strong></p>
|
|
||||||
<audio controls onplaying="awftw.countPlay('{{ media }}')">
|
|
||||||
<source src="https://files.bitbadger.solutions/devotions/{{ media }}">
|
|
||||||
</audio>
|
|
||||||
<p class="text-center">
|
|
||||||
<a class="dl" href="https://pdcst.click/c/awftw/files.bitbadger.solutions/devotions/{{ media }}" download>
|
|
||||||
<i class="fa fa-download" title="Download Audio"></i>
|
|
||||||
</a>
|
|
||||||
</p>
|
|
||||||
</aside>
|
|
||||||
{%- endunless %}
|
|
||||||
{{ post.text }}
|
{{ post.text }}
|
||||||
</article>
|
</article>
|
||||||
<nav aria-label="pagination">
|
<nav aria-label="pagination">
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
A Word from the Word
|
A Word from the Word
|
||||||
1
|
1.1
|
Loading…
Reference in New Issue
Block a user