Hi Vladimír,
Yes we have used excerpt to display the blog. Excerpt shows only a plain text. In single page your youtube slider will work fine but not in blog page. If you like to display slider instead of excerpt then you have to customize a bit of code.
Go to theme folder -> inc -> structure -> content-extension.php on line no 118 change this code <p><?php the_excerpt(); ?></p>
with <p><?php the_content(); ?></p>
We recommended you not to customize the code. IF you customize the code then while updating to new version all your customized code will be lost. So create a child theme before making any changes in the code or make the same changes while your update to new version.
Thank you!