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: ddb82411add0abf31df704d9fc40ed8121c7bfff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
- breadcrumb_title _("Groups")
- page_title    _("Explore groups")
- header_title  _("Groups"), dashboard_groups_path

= render_dashboard_ultimate_trial(current_user)

.page-title-holder.gl-display-flex.gl-align-items-center
  %h1.page-title.gl-font-size-h-display= page_title
  .page-title-controls
    - if current_user&.can_create_group?
      = render Pajamas::ButtonComponent.new(href: new_group_path, variant: :confirm) do
        = _("New group")

= 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') }= sprite_icon('close')
    .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.")

= render 'groups'