summaryrefslogtreecommitdiff
path: root/app/views/snippets/_snippets.html.haml
blob: 77b66ca74b6385ac55c3b9d8dc22e4d2c41beb21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
- remote = local_assigns.fetch(:remote, false)

.snippets-list-holder
  %ul.content-list
    = render partial: 'shared/snippets/snippet', collection: @snippets
    - if @snippets.empty?
      %li
        .nothing-here-block Nothing here.

  = paginate @snippets, theme: 'gitlab', remote: remote

:javascript
  gl.SnippetsList();