The Call
Get Some trending World News from globalnews.ca using the ID #archive-sidebar-trendingPosts and wrap it in the class worldnews
CALL: {scrape "https://globalnews.ca/world/" "#archive-sidebar-trendingPosts" "worldnews"}
More info
To get this layout i had to add some CSS before the call
<style>.worldnews img {
width: 250px;
height: auto;
}
.worldnews ul{list-style-type: none;}
.worldnews li{float:left;width:40%;}
.l-sidebar__widgetHeading.c-heading.c-heading.c-heading--strikethrough.c-posts__heading { line-height: 35px; font: 30px italic bold; }
.c-posts__about, .c-posts__rank {display:none}
.c-posts__headline {width:80%}
</style>
and some jQuery after it to get the images as there was no SRC tag in them
<script>
$('img').each(function() {var imageDataSource = $(this).data('src').toString();
var setImageSource = $(this).attr('src', imageDataSource);});
</script>