Sha256: 48e718f5ffa4eec8b0a87bdc7a6b6bbe4479981973113534b334da102f12acee
Contents?: true
Size: 1.08 KB
Versions: 15
Compression:
Stored size: 1.08 KB
Contents
<h2 class="h2 decorator"><%= title_text %></h2> <% if short_description_text.present? %> <div class="content-block__description editor-content"> <%= short_description_text %> </div> <% end %> <% if description_text.present? %> <% should_truncate = strip_tags(description_text).length > 300 %> <div class="content-block__description editor-content" <%= "data-component='accordion'" if should_truncate %>> <% if should_truncate %> <% seed = SecureRandom.hex(4) %> <div id="panel-view-more-<%= seed %>" aria-hidden="true"> <%= description_text %> </div> <button class="button button__sm button__text-secondary mt-2" data-controls="panel-view-more-<%= seed %>" aria-expanded="false"> <span> <%= t("view_more", scope: "layouts.decidim.announcements") %> </span> <%= icon "arrow-down-s-line" %> <span> <%= t("view_less", scope: "layouts.decidim.announcements") %> </span> <%= icon "arrow-up-s-line" %> </button> <% else %> <%= description_text %> <% end %> </div> <% end %>
Version data entries
15 entries across 15 versions & 1 rubygems