 f015846c11
			
		
	
	
	f015846c11
	
	
	
		
			
			This is a PR for #3616 Currently added a new optional config `SLOGAN` in ini file. When this config is set title page is modified in APP_NAME [ - SLOGAN] Example in image below  Add the new config value in the admin settings page (readonly)  ## TODO * [x] Add the possibility to add the `SLOGAN` config from the installation form * [ ] Update https://forgejo.org/docs/next/admin/config-cheat-sheet Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/3752 Reviewed-by: 0ko <0ko@noreply.codeberg.org> Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> Co-authored-by: mirko <mirko.perillo@gmail.com> Co-committed-by: mirko <mirko.perillo@gmail.com>
		
			
				
	
	
		
			51 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			Go HTML Template
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			Go HTML Template
		
	
	
	
	
	
| {{template "base/head" .}}
 | |
| <div role="main" aria-label="{{if .IsSigned}}{{ctx.Locale.Tr "dashboard"}}{{else}}{{ctx.Locale.Tr "home"}}{{end}}" class="page-content home">
 | |
| 	<div class="tw-mb-8 tw-px-8">
 | |
| 		<div class="center">
 | |
| 			<img class="logo" width="220" height="220" src="{{AssetUrlPrefix}}/img/logo.svg" alt="{{ctx.Locale.Tr "logo"}}">
 | |
| 			<div class="hero">
 | |
| 				<h1 class="ui icon header title">
 | |
| 					{{AppDisplayName}}
 | |
| 				</h1>
 | |
| 				<h2>{{ctx.Locale.Tr "startpage.app_desc"}}</h2>
 | |
| 			</div>
 | |
| 		</div>
 | |
| 	</div>
 | |
| 	<div class="ui stackable middle very relaxed page grid">
 | |
| 		<div class="eight wide center column">
 | |
| 			<h1 class="hero ui icon header">
 | |
| 				{{svg "octicon-flame"}} {{ctx.Locale.Tr "startpage.install"}}
 | |
| 			</h1>
 | |
| 			<p class="large">
 | |
| 				{{ctx.Locale.Tr "startpage.install_desc"}}
 | |
| 			</p>
 | |
| 		</div>
 | |
| 		<div class="eight wide center column">
 | |
| 			<h1 class="hero ui icon header">
 | |
| 				{{svg "octicon-device-desktop"}} {{ctx.Locale.Tr "startpage.platform"}}
 | |
| 			</h1>
 | |
| 			<p class="large">
 | |
| 				{{ctx.Locale.Tr "startpage.platform_desc"}}
 | |
| 			</p>
 | |
| 		</div>
 | |
| 	</div>
 | |
| 	<div class="ui stackable middle very relaxed page grid">
 | |
| 		<div class="eight wide center column">
 | |
| 			<h1 class="hero ui icon header">
 | |
| 				{{svg "octicon-rocket"}} {{ctx.Locale.Tr "startpage.lightweight"}}
 | |
| 			</h1>
 | |
| 			<p class="large">
 | |
| 				{{ctx.Locale.Tr "startpage.lightweight_desc"}}
 | |
| 			</p>
 | |
| 		</div>
 | |
| 		<div class="eight wide center column">
 | |
| 			<h1 class="hero ui icon header">
 | |
| 				{{svg "octicon-code"}} {{ctx.Locale.Tr "startpage.license"}}
 | |
| 			</h1>
 | |
| 			<p class="large">
 | |
| 				{{ctx.Locale.Tr "startpage.license_desc"}}
 | |
| 			</p>
 | |
| 		</div>
 | |
| 	</div>
 | |
| </div>
 | |
| {{template "base/footer" .}}
 |