25 lines
816 B
Plaintext
25 lines
816 B
Plaintext
<%= render :partial => "crawlers/header", :locals => {:context => "Projects"} %>
|
|
|
|
<ul class="projects-list">
|
|
<% if @projects %>
|
|
<% @projects.each_with_index do |project| %>
|
|
<li class="project">
|
|
<%= link_to crawlers_projects_crawler_show_detail_url(:id => project['id'], :title => project['title']) do %>
|
|
<span class="list-link">
|
|
<span class="project-title">
|
|
<%= project['title'] %>
|
|
</span>
|
|
</span>
|
|
<% end %>
|
|
<span class="add-to-fav">
|
|
<%= link_to crawlers_projects_crawler_add_to_fav_url(:id => project['id'], :title => project['title']) do %>
|
|
<%= show_svg('favorite-24px.svg') %>
|
|
<% end %>
|
|
</span>
|
|
</li>
|
|
<% end %>
|
|
<% else %>
|
|
Could not find anything... Please try again.
|
|
<% end %>
|
|
</ul>
|