<div class="<?=$this->typeMedia?> <?=$this->class?>" <?=$this->cssID?> >
    <?php if ($this->headline != ""): ?>
        <<?=$this->hl?>><?=$this->headline?></<?=$this->hl?>>
    <?php endif;?>
    <?php if ($this->typeMedia == "youtube"): ?>
        <div class="video-wrapper" style="position: relative;padding-bottom: 56.25%;padding-top: 25px;height: 0;">
            <iframe
                style="position: absolute;top: 0;left: 0;width: 100%;height: 100%;"
                src="https://www.youtube.com/embed/<?=FcAddons::GetYoutubeId($this->urlMedia)[0]?>"
                frameborder="0">
            </iframe>
        </div>
    <?php elseif ($this->typeMedia == "dailymotion"): ?>
        <div class="video-wrapper" style="position: relative;padding-bottom: 56.25%;padding-top: 25px;height: 0;">
            <iframe
                frameborder="0"
                style="position: absolute;top: 0;left: 0;width: 100%;height: 100%;"
                src="<?=$this->urlMedia?>"
                allowfullscreen
                allow="autoplay">
            </iframe>
        </div>
    <?php elseif ($this->typeMedia == "soundcloud"): ?>
        <iframe width="100%"
                height="166"
                scrolling="no"
                frameborder="no"
                allow="autoplay"
                src="https://w.soundcloud.com/player/?url=<?=$this->urlMedia?>?color=#ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true">
        </iframe>
    <?php endif?>
</div>