The block below contains a Bumble template. Press the "Run" button below to see it combined with data from Yahoo! News.
template
<% for (var i = 0; i < stories.length; i++): %>
<% var story = stories[i] %>
<div class="story">
<a href="<%= story.url %>">
<img src="<%= story.image %>"
alt="<%= story.title %>" /></a>
<h3><a href="<%= story.url %>">
<%= story.title %> »</a></h3>
</div>
<% end %>
