mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
Fix home page template regression (#5102)
Commit 7bb4d610e5
tries to take the app_name from the locale, however, it is a user defined setting. This causes the app name to simply display as `app_name` instead of the correct value.
templates/helper.go automatically injects the AppName variable into every template, so we can safely use that instead.
Signed-off-by: Daniel Derzsi <daniel@tohka.us>
This commit is contained in:
parent
ea619b39b2
commit
8db3bdc683
1 changed files with 1 additions and 1 deletions
2
templates/home.tmpl
vendored
2
templates/home.tmpl
vendored
|
@ -7,7 +7,7 @@
|
|||
</div>
|
||||
<div class="hero">
|
||||
<h1 class="ui icon header title">
|
||||
{{.i18n.Tr "app_name"}}
|
||||
{{AppName}}
|
||||
</h1>
|
||||
<h2>{{.i18n.Tr "app_desc"}}</h2>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue