mirror of
https://github.com/hkalexling/Mango.git
synced 2026-03-20 00:00:48 -04:00
32 lines
1.1 KiB
Plaintext
32 lines
1.1 KiB
Plaintext
<h2 class=uk-title>Library</h2>
|
|
<p class="uk-text-meta"><%= titles.size %> titles found</p>
|
|
<div class="uk-grid-small" uk-grid>
|
|
<div class="uk-margin-bottom uk-width-3-4@s">
|
|
<form class="uk-search uk-search-default">
|
|
<span uk-search-icon></span>
|
|
<input class="uk-search-input" type="search" placeholder="Search">
|
|
</form>
|
|
</div>
|
|
<div class="uk-margin-bottom uk-width-1-4@s">
|
|
<% hash = {
|
|
"name" => "Name",
|
|
"date" => "Date Modified",
|
|
"progress" => "Progress"
|
|
} %>
|
|
<%= render_component "sort-form" %>
|
|
</div>
|
|
</div>
|
|
<div id="item-container" class="uk-child-width-1-4@m uk-child-width-1-2" uk-grid>
|
|
<% titles.each_with_index do |item, i| %>
|
|
<% progress = percentage[i] %>
|
|
<%= render_component "card" %>
|
|
<% end %>
|
|
</div>
|
|
|
|
<% content_for "script" do %>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jQuery.dotdotdot/4.0.11/dotdotdot.js"></script>
|
|
<script src="<%= base_url %>js/dots.js"></script>
|
|
<script src="<%= base_url %>js/search.js"></script>
|
|
<script src="<%= base_url %>js/sort-items.js"></script>
|
|
<% end %>
|