Skip to content

Instantly share code, notes, and snippets.

@PaquitoSoft
Last active September 29, 2017 23:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PaquitoSoft/db2389901b17645f6fa34609f7d50676 to your computer and use it in GitHub Desktop.
Save PaquitoSoft/db2389901b17645f6fa34609f7d50676 to your computer and use it in GitHub Desktop.
export default function PodcastSummary(podcast) {
return `
<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3 podcast-summary">
<div class="box">
<a href="/podcast/${podcast.id}">
<div class="box-icon">
<img src=${podcast.cover} alt=${podcast.name}>
</div>
<div class="info">
<h4 class="text-center">${podcast.name}</h4>
<p>
<span class="text-center">
<span>Author: </span>
<span>${podcast.author}</span>
</span>
</p>
</div>
</a>
</div>
</div>
`;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment