gitlab-org--gitlab-foss/app/views/search/results/_blob.html.haml
Dmitriy Zaporozhets 9ab12e099d
Fix search blobs for wiki
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-07-12 14:01:06 +02:00

10 lines
462 B
Text

- blob = @project.repository.parse_search_result(blob)
.blob-result
.file-holder
.file-title
= link_to namespace_project_blob_path(@project.namespace, @project, tree_join(blob.ref, blob.filename), :anchor => "L" + blob.startline.to_s) do
%i.fa.fa-file
%strong
= blob.filename
.file-content.code.term
= render 'shared/file_highlight', blob: blob, first_line_number: blob.startline, user_color_scheme_class: 'white'