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

14 lines
329 B
Plaintext
Raw Normal View History

- remote = local_assigns.fetch(:remote, false)
2016-09-02 11:29:05 +00:00
.snippets-list-holder
%ul.content-list
= render partial: 'shared/snippets/snippet', collection: @snippets
- if @snippets.empty?
%li
.nothing-here-block Nothing here.
2013-03-24 22:18:39 +00:00
= paginate @snippets, theme: 'gitlab', remote: remote
2016-09-02 11:29:05 +00:00
:javascript
gl.SnippetsList();