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

_explore.html.haml « nav « layouts « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7d18cd8978b1b3ab275a17b5e6e314e01dd7d9a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
%ul.list-unstyled.navbar-sub-nav
  - if explore_nav_link?(:projects)
    = nav_link(path: ['dashboard#show', 'root#show', 'projects#trending', 'projects#starred', 'projects#index'], html_options: {class: 'home'}) do
      = link_to explore_root_path, title: _('Projects'), class: 'dashboard-shortcuts-projects' do
        = _('Projects')
  - if explore_nav_link?(:groups)
    = nav_link(controller: [:groups, 'groups/milestones', 'groups/group_members']) do
      = link_to explore_groups_path, title: _('Groups'), class: 'dashboard-shortcuts-groups' do
        = _('Groups')
  - if explore_nav_link?(:snippets)
    = nav_link(controller: :snippets) do
      = link_to explore_snippets_path, title: _('Snippets'), class: 'dashboard-shortcuts-snippets' do
        = _('Snippets')
  %li
    = link_to _("Help"), help_path, title: _('About GitLab CE')