Here's a code to grab the first image of each post and apply it as an element background image in each post.

<b:loop values='data:posts' var='post'>
<div class='card' expr:style='"background-image: url(\"" + data:post.featuredImage + "\");"'>
</b:loop>
You can see the demo on our homepage.
