9 lines
568 B
Text
9 lines
568 B
Text
<% unless (banner = next_banner()).nil? %>
|
|
<%= tag.div :id => "banner", :class => "position-relative", :data => { :bs_theme => token_list(:dark => banner[:dark]) } do %>
|
|
<%= link_to (image_tag banner[:img], :srcset => banner[:srcset], :alt => banner[:alt], :title => banner[:alt]), banner[:link] %>
|
|
<button type="button"
|
|
class="btn-close position-absolute top-0 end-0 m-4 opacity-100 bg-white bg-opacity-50"
|
|
id="<%= banner_cookie(banner[:id]) %>"
|
|
aria-label="<%= t("javascripts.close") %>"></button>
|
|
<% end %>
|
|
<% end %>
|