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
[podlove-episode field="summary"] | |
[podlove-web-player] | |
[podlove-episode-downloads] | |
[podlove-contributor-list donations="yes" roles="yes" flattr="yes"] | |
[is_singular] | |
<br/> | |
<img src="{{episode.imageUrlWithFallback}}" alt="{{episode.title}} - Episodenbild" height="300px"/> | |
<br/> |
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
#!/bin/bash | |
cd $1 | |
for i in `ls *.mp3`; do echo "<li><audio preload="none" controls="controls"><source src='$i' type='audio/mp3'/></audio> <a href='$i'>download $i</a></li>" >> index.html; done; | |
cd .. | |
echo "<li><a href='$1'>$1</a></li><br>" >> index.html |