Skip to content

Instantly share code, notes, and snippets.

@eteubert
Created March 13, 2014 04:18
Show Gist options
  • Select an option

  • Save eteubert/9521831 to your computer and use it in GitHub Desktop.

Select an option

Save eteubert/9521831 to your computer and use it in GitHub Desktop.
`[podlove-feed-list]` template
<table>
<thead>
<tr>
<th>Feed</th>
<th>Enclosure</th>
</tr>
</thead>
<tbody>
{% for feed in podcast.feeds %}
{% if feed.discoverable %}
<tr>
<td>
<a href="{{ feed.url }}">{{ feed.title }}</a>
</td>
<td>
<span title="{{ feed.asset.fileType.mimeType }} ({{ feed.asset.fileType.extension }})">
{{ feed.asset.title }}
</span>
</td>
</tr>
{% endif %}
{% endfor %}
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment