Sha256: debc0713ab6f094e51d4b20ca64532c2c60be681999fdd58cf9b399054b7644e

Contents?: true

Size: 745 Bytes

Versions: 16

Compression:

Stored size: 745 Bytes

Contents

<% if object.present? && object.asset.present? %>
  <% max_img_size = object.max_image_size %>

  <% if object.url.present? %>
    <%= link_to object.url do %>
      <%= image_tag object.asset.image.url(max_img_size, max_img_size, quality: 65), alt: '', class: 'img-fluid' %>
    <% end %>

  <% else %>
    <%= image_tag object.asset.image.url(max_img_size, max_img_size, quality: 65), alt: '', class: 'img-fluid' %>
  <% end %>

  <% if object.caption.present? %>
    <% if Udongo.config.flexible_content.picture_caption_editor? %>
      <div class="img-caption">
        <%= object.caption.html_safe %>
      </div>
    <% else %>
      <div class="text-center">
        <%= object.caption %>
      </div>
    <% end %>
  <% end %>
<% end %>

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
udongo-7.1.3 app/views/frontend/flexible_content/_picture.html.erb
udongo-7.1.2 app/views/frontend/flexible_content/_picture.html.erb
udongo-7.1.1 app/views/frontend/flexible_content/_picture.html.erb
udongo-7.1.0 app/views/frontend/flexible_content/_picture.html.erb
udongo-7.0.4 app/views/frontend/flexible_content/_picture.html.erb
udongo-7.0.3 app/views/frontend/flexible_content/_picture.html.erb
udongo-7.0.2 app/views/frontend/flexible_content/_picture.html.erb
udongo-7.0.1 app/views/frontend/flexible_content/_picture.html.erb
udongo-7.0.0 app/views/frontend/flexible_content/_picture.html.erb
udongo-6.6.3 app/views/frontend/flexible_content/_picture.html.erb
udongo-6.6.2 app/views/frontend/flexible_content/_picture.html.erb
udongo-6.6.1 app/views/frontend/flexible_content/_picture.html.erb
udongo-6.6.0 app/views/frontend/flexible_content/_picture.html.erb
udongo-6.5.2 app/views/frontend/flexible_content/_picture.html.erb
udongo-6.5.1 app/views/frontend/flexible_content/_picture.html.erb
udongo-6.5.0 app/views/frontend/flexible_content/_picture.html.erb