mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-04 05:18:25 +00:00 
			
		
		
		
	Remove Dashboard/Home button from the navbar (#16844)
This removes the Dashboard/Home buttons and adds its text to the title of the logo. Co-authored-by: Alexey 〒erentyev <axifnx@gmail.com>
This commit is contained in:
		@@ -1,6 +1,6 @@
 | 
				
			|||||||
<div class="ui container" id="navbar">
 | 
					<div class="ui container" id="navbar">
 | 
				
			||||||
	<div class="item brand" style="justify-content: space-between;">
 | 
						<div class="item brand" style="justify-content: space-between;">
 | 
				
			||||||
		<a href="{{AppSubUrl}}/">
 | 
							<a href="{{AppSubUrl}}/" class="item poping up" data-content="{{if .IsSigned}}{{.i18n.Tr "dashboard"}}{{else}}{{.i18n.Tr "home"}}{{end}}" data-variation="tiny inverted">
 | 
				
			||||||
			<img class="ui mini image" width="30" height="30" src="{{AssetUrlPrefix}}/img/logo.svg">
 | 
								<img class="ui mini image" width="30" height="30" src="{{AssetUrlPrefix}}/img/logo.svg">
 | 
				
			||||||
		</a>
 | 
							</a>
 | 
				
			||||||
		<div class="ui basic icon button mobile-only" id="navbar-expand-toggle">
 | 
							<div class="ui basic icon button mobile-only" id="navbar-expand-toggle">
 | 
				
			||||||
@@ -11,7 +11,6 @@
 | 
				
			|||||||
	{{if and .IsSigned .MustChangePassword}}
 | 
						{{if and .IsSigned .MustChangePassword}}
 | 
				
			||||||
		{{/* No links */}}
 | 
							{{/* No links */}}
 | 
				
			||||||
	{{else if .IsSigned}}
 | 
						{{else if .IsSigned}}
 | 
				
			||||||
		<a class="item {{if .PageIsDashboard}}active{{end}}" href="{{AppSubUrl}}/">{{.i18n.Tr "dashboard"}}</a>
 | 
					 | 
				
			||||||
		{{if not .UnitIssuesGlobalDisabled}}
 | 
							{{if not .UnitIssuesGlobalDisabled}}
 | 
				
			||||||
		<a class="item {{if .PageIsIssues}}active{{end}}" href="{{AppSubUrl}}/issues">{{.i18n.Tr "issues"}}</a>
 | 
							<a class="item {{if .PageIsIssues}}active{{end}}" href="{{AppSubUrl}}/issues">{{.i18n.Tr "issues"}}</a>
 | 
				
			||||||
		{{end}}
 | 
							{{end}}
 | 
				
			||||||
@@ -22,13 +21,10 @@
 | 
				
			|||||||
		{{if .ShowMilestonesDashboardPage}}<a class="item {{if .PageIsMilestonesDashboard}}active{{end}}" href="{{AppSubUrl}}/milestones">{{.i18n.Tr "milestones"}}</a>{{end}}
 | 
							{{if .ShowMilestonesDashboardPage}}<a class="item {{if .PageIsMilestonesDashboard}}active{{end}}" href="{{AppSubUrl}}/milestones">{{.i18n.Tr "milestones"}}</a>{{end}}
 | 
				
			||||||
		{{end}}
 | 
							{{end}}
 | 
				
			||||||
		<a class="item {{if .PageIsExplore}}active{{end}}" href="{{AppSubUrl}}/explore/repos">{{.i18n.Tr "explore"}}</a>
 | 
							<a class="item {{if .PageIsExplore}}active{{end}}" href="{{AppSubUrl}}/explore/repos">{{.i18n.Tr "explore"}}</a>
 | 
				
			||||||
	{{else if .IsLandingPageHome}}
 | 
					 | 
				
			||||||
		<a class="item {{if .PageIsHome}}active{{end}}" href="{{AppSubUrl}}/">{{.i18n.Tr "home"}}</a>
 | 
					 | 
				
			||||||
		<a class="item {{if .PageIsExplore}}active{{end}}" href="{{AppSubUrl}}/explore/repos">{{.i18n.Tr "explore"}}</a>
 | 
					 | 
				
			||||||
	{{else if .IsLandingPageExplore}}
 | 
					 | 
				
			||||||
		<a class="item {{if .PageIsExplore}}active{{end}}" href="{{AppSubUrl}}/explore/repos">{{.i18n.Tr "home"}}</a>
 | 
					 | 
				
			||||||
	{{else if .IsLandingPageOrganizations}}
 | 
						{{else if .IsLandingPageOrganizations}}
 | 
				
			||||||
		<a class="item {{if .PageIsExplore}}active{{end}}" href="{{AppSubUrl}}/explore/organizations">{{.i18n.Tr "home"}}</a>
 | 
							<a class="item {{if .PageIsExplore}}active{{end}}" href="{{AppSubUrl}}/explore/organizations">{{.i18n.Tr "explore"}}</a>
 | 
				
			||||||
 | 
						{{else}}
 | 
				
			||||||
 | 
							<a class="item {{if .PageIsExplore}}active{{end}}" href="{{AppSubUrl}}/explore/repos">{{.i18n.Tr "explore"}}</a>
 | 
				
			||||||
	{{end}}
 | 
						{{end}}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	{{template "custom/extra_links" .}}
 | 
						{{template "custom/extra_links" .}}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user