Sha256: f61769fa07c7b661db692908a89037bc96a7f7b3116a774738f52e9179e577b6
Contents?: true
Size: 1.1 KB
Versions: 3
Compression:
Stored size: 1.1 KB
Contents
<% @folders.each do |folder| %> <section class="hero is-morion is-small"> <div class="hero-body"> <div class="container"> <h1 class="title"> <%= folder.first %> </h1> </div> </div> </section> <div class="section"> <div class="container"> <div class="columns is-multiline is-mobile"> <% folder.second.each do |file| %> <div class="column is-narrow"> <div class="img-box" data-balloon="<%= file[:asset_path] %>" data-balloon-pos="up"> <% if file[:extension] == '.svg' %> <%= image_tag(file[:asset_path], class: 'full-dimenssion') %> <% else %> <%= image_tag(file[:asset_path]) %> <% end %> <span class="icon is-small copy-icon" data-clipboard-text="<%= file[:asset_path] %>"> <i class="fa fa-copy" data-path="<%= file[:file_name] %>"></i> </span> <span class="extension"><%= file[:extension] %></span> </div> </div> <% end %> </div> </div> </div> <% end %>
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
morion-0.0.4 | app/views/morion/morion/index.html.erb |
morion-0.0.3 | app/views/morion/morion/index.html.erb |
morion-0.0.1 | app/views/morion/morion/index.html.erb |