A vibe coded tangled fork which supports pijul.
at 3d95c2e4f94d79ca9a37654f16c6b80985ce3250 15 lines 562 B view raw
1{{ define "fragments/repoDescription" }} 2<span id="repo-description" class="flex flex-wrap items-center gap-2" hx-target="this" hx-swap="outerHTML"> 3 {{ if .RepoInfo.Description }} 4 {{ .RepoInfo.Description }} 5 {{ else }} 6 <span class="italic">this repo has no description</span> 7 {{ end }} 8 9 {{ if .RepoInfo.Roles.IsOwner }} 10 <button class="btn p-2 flex items-center gap-2 no-underline text-sm" hx-get="/{{ .RepoInfo.FullName }}/description/edit"> 11 {{ i "pencil" "w-3 h-3" }} edit 12 </button> 13 {{ end }} 14</span> 15{{ end }}