Created
March 13, 2014 04:18
-
-
Save eteubert/9521831 to your computer and use it in GitHub Desktop.
`[podlove-feed-list]` template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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