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

_nav.html.haml « projects « explore « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 65b7d055843a620abdb81493ad45b8dca054731f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.top-area
  %ul.nav-links.nav.nav-tabs
    = nav_link(page: [explore_projects_path, explore_root_path]) do
      = link_to explore_projects_path do
        = _('All')
    = nav_link(page: starred_explore_projects_path) do
      = link_to starred_explore_projects_path do
        = _('Most stars')
    = nav_link(page: trending_explore_projects_path) do
      = link_to trending_explore_projects_path do
        = _('Trending')

  .nav-controls
    - unless current_user
      = render 'shared/projects/search_form'
      = render 'shared/projects/dropdown'
    = render 'filter'