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

index.html.haml « groups « explore « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0643b9cfbc5ae2b0d8dc53b1fa8f3a98ff4bc4ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
- @hide_top_links = true
- page_title    "Groups"
- header_title  "Groups", dashboard_groups_path

- if current_user
  = render 'dashboard/groups_head'
- else
  = render 'explore/head'
  = render 'nav'

- if cookies[:explore_groups_landing_dismissed] != 'true'
  .explore-groups.landing.content-block.js-explore-groups-landing.hide
    %button.dismiss-button{ type: 'button', 'aria-label' => 'Dismiss' }= icon('times')
    .svg-container
      = custom_icon('icon_explore_groups_splash')
    .inner-content
      %p Below you will find all the groups that are public.
      %p You can easily contribute to them by requesting to join these groups.

- if params[:filter].blank? && @groups.empty?
  .nothing-here-block No public groups
- else
  = render 'groups'