A vibe coded tangled fork which supports pijul.
1{{ define "repo/pipelines/fragments/logBlock" }}
2<div id="lines" hx-swap-oob="beforeend">
3 <details id="step-{{ .Id }}" {{if not .Collapsed}}open{{end}} class="group bg-gray-100 px-2 dark:bg-gray-900">
4 <summary class="sticky top-0 py-1 list-none cursor-pointer py-2 bg-gray-100 dark:bg-gray-900 hover:text-gray-500 hover:dark:text-gray-400">
5 <div class="group-open:hidden flex items-center gap-1">
6 {{ i "chevron-right" "w-4 h-4" }} {{ .Name }}
7 </div>
8 <div class="hidden group-open:flex items-center gap-1">
9 {{ i "chevron-down" "w-4 h-4" }} {{ .Name }}
10 </div>
11 </summary>
12 <div class="text-blue-600 dark:text-blue-300 font-mono">{{ .Command }}</div>
13 <div id="step-body-{{ .Id }}" class="font-mono"></div>
14 </details>
15</div>
16{{ end }}