2018-03-25 17:20:54 +00:00
|
|
|
<%- # License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later -%>
|
2018-03-25 17:30:42 +00:00
|
|
|
<div class='u-marginBottom--15 u-relative'>
|
|
|
|
<% has_video = @campaign.vimeo_video_id || @campaign.youtube_video_id %>
|
|
|
|
<% text = has_video ? "Edit Video" : "Add Video" %>
|
|
|
|
|
|
|
|
<% if @campaign.vimeo_video_id %>
|
|
|
|
<div class='campaignMedia-video' if-branded='background, lightest'>
|
2019-05-06 16:22:08 +00:00
|
|
|
<iframe src="https://player.vimeo.com/video/<%= @campaign.vimeo_video_id %>" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
|
2018-03-25 17:30:42 +00:00
|
|
|
</div>
|
|
|
|
<% elsif @campaign.youtube_video_id %>
|
|
|
|
<div class='campaignMedia-video' if-branded='background, lightest'>
|
|
|
|
<%= render 'components/media/youtube_iframe', id: @campaign.youtube_video_id %>
|
|
|
|
</div>
|
2020-05-15 19:01:59 +00:00
|
|
|
<% elsif @campaign.main_image.attached? %>
|
|
|
|
<%= image_tag @campaign.main_image_by_size(:normal), class: 'campaignMedia-image' %>
|
2018-03-25 17:30:42 +00:00
|
|
|
<% end %>
|
|
|
|
</div>
|