mirror of
https://github.com/jgonyea/grav-plugin-podcast.git
synced 2025-12-05 16:00:02 +01:00
13 lines
319 B
Twig
13 lines
319 B
Twig
{# Only display the series div if there are actual series #}
|
|
{% if count(series) > 0 %}
|
|
<div id = "podcast-series">
|
|
<h2>Podcast Series</h2>
|
|
<ul>
|
|
{% for s in series %}
|
|
<li>
|
|
<a href="{{ base_url }}{{ s.route }}">{{ s.title }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endif %} |