gitlab-org--gitlab-foss/app/views/snippets/_snippets.html.haml

11 lines
331 B
Plaintext
Raw Normal View History

- link_project = local_assigns.fetch(:link_project, false)
2016-09-02 11:29:05 +00:00
.snippets-list-holder
%ul.content-list
= render partial: 'shared/snippets/snippet', collection: @snippets, locals: { link_project: link_project }
2016-09-02 11:29:05 +00:00
- if @snippets.empty?
%li
.nothing-here-block Nothing here.
2013-03-24 22:18:39 +00:00
2017-07-25 10:56:41 +00:00
= paginate @snippets, theme: 'gitlab'