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
{# the simple way to get the URL from an oEmbed field #} | |
{% if item.meta('oembed') %} | |
<div class="category-featured-post"> | |
{% set videoSrc = item.meta('oembed')|split("src=") %} | |
{% set videoUrl = videoSrc[1]|split('"') %} | |
{{ videoUrl[1] }} | |
</div> | |
{% endif %} |