Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_snippets_head.html.haml « dashboard « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: be2124fdd7eac39143b75aab5f00b92b7c89e05f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
.page-title-holder.d-flex.align-items-center
  %h1.page-title.gl-font-size-h-display= _('Snippets')

  - if current_user && current_user.snippets.any? || @snippets.any?
    .page-title-controls
      - if can?(current_user, :create_snippet)
        = link_to _("New snippet"), new_snippet_path, class: "gl-button btn btn-confirm", title: _("New snippet")

.top-area
  = gl_tabs_nav({ class: 'gl-border-0' }) do
    = gl_tab_link_to _('Your snippets'), dashboard_snippets_path, { title: _('Your snippets') }
    = gl_tab_link_to _('Explore snippets'), explore_snippets_path, { title: _('Explore snippets') }