You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

11 lines
407 B

<% intro_video = root_node&.children&.intro&.first&.attachments&.find { |a| a.asset&.file&.video? } %>
<% if intro_video %>
<%= video_tag rails_storage_proxy_path(intro_video.asset.file),
preload: "auto",
muted: true,
playsinline: true,
class: "preload-media",
"aria-hidden": true,
tabindex: -1 %>
<% end %>