summaryrefslogtreecommitdiff
path: root/app/views/search/results/_snippet_title.html.haml
blob: 027d42396b48f42e52223b1870523f459bf80428 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.search-result-row
  %h4.snippet-title.term
    = link_to reliable_snippet_path(snippet_title) do
      = truncate(snippet_title.title, length: 60)
      - if snippet_title.private?
        %span.label.label-gray
          %i.fa.fa-lock
          private
    %span.cgray.monospace.tiny.pull-right.term
      = snippet_title.file_name

  %small.pull-right.cgray
    - if snippet_title.project_id?
      = link_to snippet_title.project.name_with_namespace, namespace_project_path(snippet_title.project.namespace, snippet_title.project)

  .snippet-info
    = snippet_title.to_reference
    %span
      by
      = link_to user_snippets_path(snippet_title.author) do
        = image_tag avatar_icon(snippet_title.author_email), class: "avatar avatar-inline s16", alt: ''
        = snippet_title.author_name
      %span.light #{time_ago_with_tooltip(snippet_title.created_at)}