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>
26 lines
747 B
Handlebars
26 lines
747 B
Handlebars
<header class="pages-header">
|
|
<div class="container">
|
|
<nav class="pages-nav">
|
|
<a href="/" class="pages-nav-brand">
|
|
{{if .Config.Branding.Logo}}
|
|
<img src="{{.Config.Branding.Logo}}" alt="{{.Repository.Name}}" class="pages-nav-logo">
|
|
{{else}}
|
|
<span class="pages-nav-title">{{.Repository.Name}}</span>
|
|
{{end}}
|
|
</a>
|
|
<div class="pages-nav-links">
|
|
{{if .Config.Footer.Links}}
|
|
{{range .Config.Footer.Links}}
|
|
{{range .Items}}
|
|
<a href="{{.URL}}" class="pages-nav-link">{{.Text}}</a>
|
|
{{end}}
|
|
{{end}}
|
|
{{end}}
|
|
<a href="{{AppSubUrl}}/{{.Repository.FullName}}" class="ui mini button" target="_blank">
|
|
{{svg "octicon-mark-github" 16}} View Source
|
|
</a>
|
|
</div>
|
|
</nav>
|
|
</div>
|
|
</header>
|