33 lines
977 B
Text
33 lines
977 B
Text
.row
|
|
.span6
|
|
%h3.page-title
|
|
Projects (#{@projects.total_count})
|
|
%small with read-only access
|
|
.span6
|
|
.pull-right
|
|
= form_tag public_projects_path, method: :get, class: 'form-inline' do |f|
|
|
.search-holder
|
|
.input
|
|
= search_field_tag :search, params[:search], placeholder: "gitlab-ci", class: "span3 search-text-input", id: "projects_search"
|
|
= submit_tag 'Search', class: "btn btn-primary wide"
|
|
|
|
%hr
|
|
|
|
.public-projects
|
|
%ul.unstyled
|
|
- @projects.each do |project|
|
|
%li.clearfix
|
|
%h5
|
|
%i.icon-share
|
|
- if current_user
|
|
= link_to_project project
|
|
- else
|
|
= project.name_with_namespace
|
|
.pull-right
|
|
%pre.dark.tiny git clone #{project.http_url_to_repo}
|
|
%p.description
|
|
= project.description
|
|
- unless @projects.present?
|
|
%h3.nothing_here_message No public projects
|
|
|
|
= paginate @projects, theme: "gitlab"
|