Skip to content

Commit

Permalink
Issue #49 Issue#50 small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jgonyea committed Mar 5, 2022
1 parent b8ec921 commit bf0ea64
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# v3.0.5
## 02/05/2021

1. [](#new)

2. [](#improved)
* Removed admin plugin as dependency.

3. [](#bugfix)
* Fixed an h3 closing tag

# v3.0.4
## 10/04/2021

Expand Down
3 changes: 1 addition & 2 deletions blueprints.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Podcast
version: 3.0.4
version: 3.0.5
description: Creates Podcast page types and related podcast RSS feeds
icon: microphone
author:
Expand All @@ -12,7 +12,6 @@ docs: https://github.com/jgonyea/grav-plugin-podcast/blob/develop/README.md
license: MIT

dependencies:
- admin
- breadcrumbs
- feed
- get-id3
Expand Down
2 changes: 1 addition & 1 deletion templates/partials/podcast_episodes_list.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
{% if (e.header.podcast.audio.meta.duration) %}
<small>( {{ e.header.podcast.audio.meta.duration }} )</small>
{% endif %}
</h2>
</h3>
</a>
<p class="episode-date">
{{ (datestamp)|nicetime(false) }}{% if e.header.podcast.audio.meta %} | <a href ="{{ e.header.podcast.audio.meta.guid }}">Download Audio</a>{% endif %}
Expand Down
4 changes: 2 additions & 2 deletions templates/partials/podcast_series_list.html.twig
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class = "podcast-full-list">
{% if (series|length > 0)%}
<h2>{{ 'PLUGIN_PODCAST.WORDS.LATEST'|t|e }} {{ 'PLUGIN_PODCAST.WORDS.SERIES'|t|e|pluralize }}</h2>
<h2>{{ 'PLUGIN_PODCAST.WORDS.LATEST'|t|e }} {{ 'PLUGIN_PODCAST.WORDS.SERIES'|t|e }}</h2>

<div class="channel-links">
All Series
Expand All @@ -17,7 +17,7 @@
{% if (s.header.podcast.audio.meta.duration) %}
<small>( {{ s.header.podcast.audio.meta.duration }} )</small>
{% endif %}
</h2>
</h3>
</a>
<p class="series-description">
{% if s.summary %}
Expand Down

0 comments on commit bf0ea64

Please sign in to comment.