Commit 47f17681 authored by Rémy Coutable's avatar Rémy Coutable

Merge branch '34945-readme-div-id' into 'master'

#34945: add a div id to the readme section in the project overview

Closes #34945

See merge request !13735
parents 0357726d d1cb1bf8
...@@ -27,9 +27,10 @@ ...@@ -27,9 +27,10 @@
= link_to project_tags_path(@project) do = link_to project_tags_path(@project) do
#{n_('Tag', 'Tags', @repository.tag_count)} (#{number_with_delimiter(@repository.tag_count)}) #{n_('Tag', 'Tags', @repository.tag_count)} (#{number_with_delimiter(@repository.tag_count)})
- if default_project_view != 'readme' && @repository.readme - if @repository.readme
%li %li
= link_to _('Readme'), readme_path(@project) = link_to _('Readme'),
default_project_view != 'readme' ? readme_path(@project) : '#readme'
- if @repository.changelog - if @repository.changelog
%li %li
......
- if readme.rich_viewer - if readme.rich_viewer
%article.file-holder.readme-holder{ class: ("limited-width-container" unless fluid_layout) } %article.file-holder.readme-holder{ id: 'readme', class: ("limited-width-container" unless fluid_layout) }
.js-file-title.file-title .js-file-title.file-title
= blob_icon readme.mode, readme.name = blob_icon readme.mode, readme.name
= link_to project_blob_path(@project, tree_join(@ref, readme.path)) do = link_to project_blob_path(@project, tree_join(@ref, readme.path)) do
......
---
title: Add div id to the readme in the project overview
merge_request: 13735
author: Riccardo Padovani @rpadovani
type: added
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment