feat: add projects link to signed-in user navbar in head_navbar template

- Insert conditional "Projects" navigation item for authenticated users
- Remove commented-out help link block for non-signed-in users
This commit is contained in:
retoor 2024-12-08 03:16:50 +00:00
parent 5806c156e3
commit f2b5cd5444

View File

@ -58,13 +58,12 @@
<a class="item" rel="noopener noreferrer" href="/retoor/gists/">Examples / Research / Gists</a>
{{end}}
{{ if .IsSigned }}
<a class="item" href="{{AppSubUrl}}/{{.SignedUser.Name}}/-/projects">Projects</a>
{{ end }}
{{template "custom/extra_links" .}}
<!--
{{if not .IsSigned}}
<a class="item" target="_blank" rel="noopener noreferrer" href="https://docs.gitea.com">{{ctx.Locale.Tr "help"}}</a>
{{end}}
-->
</div>
<!-- the full dropdown menus -->