feat: Implement dynamic typing animation for the home page hero title and customize the footer template.

This commit is contained in:
Matt Batchelder
2026-02-11 08:52:52 -05:00
parent 04c8c46e9d
commit 79a584f625
4 changed files with 127 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
{{/*
Custom footer template for Gitea
This overrides the default footer to remove licenses and API links
*/}}
<footer>
<div class="ui container">
<div class="ui left">
{{.locale.Tr "powered_by" "Gitea"}}
{{if .ShowFooterVersion}}
{{.locale.Tr "version"}}:
{{if .IsAdmin}}
<a href="{{AppSubUrl}}/admin/config">{{AppVer}}</a>
{{else}}
{{AppVer}}
{{end}}
{{end}}
</div>
<div class="ui right links">
{{/* Removed licenses and API links */}}
</div>
</div>
</footer>