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

explore.html.haml « layouts « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2bd0b8d85c91b0e929ad7258eda7f791bbb82b89 (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
26
27
28
29
30
- page_title = 'Explore'
!!! 5
%html{ lang: "en"}
  = render "layouts/head", title: page_title
  %body{class: "#{app_theme}  application", :'data-page' => body_data_page}
    = render "layouts/broadcast"
    - if current_user
      = render "layouts/head_panel", title: link_to(page_title, explore_root_path)
    - else
      = render "layouts/public_head_panel", title: link_to(page_title, explore_root_path)
    .container.navless-container
      .content
        .explore-title
          %h3
            Explore GitLab
          %p.lead
            Discover projects and groups. Share your projects with others


        %ul.nav.nav-tabs
          = nav_link(path: 'projects#trending') do
            = link_to 'Trending Projects', explore_root_path
          = nav_link(path: 'projects#starred') do
            = link_to 'Most Starred Projects', starred_explore_projects_path
          = nav_link(path: 'projects#index') do
            = link_to 'All Projects', explore_projects_path
          = nav_link(controller: :groups) do
            = link_to 'All Groups', explore_groups_path

        = yield