gitea/templates/pages/footer.tmpl
logikonline b816ee4eec feat: add Phases 3-5 enhancements (org profiles, pages, wiki v2 API)
Phase 3: Organization Public Profile Page
- Pinned repositories with groups
- Public members display with roles
- API endpoints for pinned repos and groups

Phase 4: Gitea Pages Foundation
- Landing page templates (simple, docs, product, portfolio)
- Custom domain support with verification
- YAML configuration parser (.gitea/landing.yaml)
- Repository settings UI for pages

Phase 5: Enhanced Wiki System with V2 API
- Full CRUD operations via v2 API
- Full-text search with WikiIndex table
- Link graph visualization
- Wiki health metrics (orphaned, dead links, outdated)
- Designed for external AI plugin integration
- Developer guide for .NET integration

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-09 15:14:27 -05:00

33 lines
789 B
Handlebars

<footer class="pages-footer">
<div class="container">
{{if .Config.Footer.Links}}
<div class="pages-footer-links">
{{range .Config.Footer.Links}}
<div class="pages-footer-column">
{{if .Title}}
<h4 class="pages-footer-title">{{.Title}}</h4>
{{end}}
<ul class="pages-footer-list">
{{range .Items}}
<li><a href="{{.URL}}">{{.Text}}</a></li>
{{end}}
</ul>
</div>
{{end}}
</div>
{{end}}
<div class="pages-footer-bottom">
{{if .Config.Footer.Copyright}}
<p class="pages-footer-copyright">{{.Config.Footer.Copyright}}</p>
{{end}}
{{if .Config.Footer.ShowPoweredBy}}
<p class="pages-footer-powered">
Powered by <a href="https://about.gitea.com" target="_blank">Gitea</a>
</p>
{{end}}
</div>
</div>
</footer>