Skip to content

Instantly share code, notes, and snippets.

@eteubert
Last active August 29, 2015 14:03
Show Gist options
  • Save eteubert/961bf858bdfdc6307a7b to your computer and use it in GitHub Desktop.
Save eteubert/961bf858bdfdc6307a7b to your computer and use it in GitHub Desktop.
{% for list in podlove.lists({slug: "meta"}) %}
        <h1><a href="{{ list.url }}">{{ list.title }}</a></h1>
    <h2>{{ list.subtitle }}</h2>
    <p>
            Sabbel: {{ list.description }}
    </p>
        <ul>
            {% for episode in list.episodes({limit: 5}) %}
                <li>{{ episode.title }}</li>
            {% endfor %}
    </ul>

        <ul>
    {% for podcast in list.podcasts %}
        <li>
                <strong>{{ podcast.title }}</strong> - <em>{{ podcast.subtitle }}</em>
            <p>
                <img src="{{ podcast.imageUrl }}" alt="" style="float: right; width: 80px;" />
                {{ podcast.summary }}
            </p>
            <ul>
                {% for episode in podcast.episodes %}
                        <li>{{ episode.title }}</li>
                {% endfor %}
            </ul>
        </li>
    {% endfor %}
    </ul>
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment