A vibe coded tangled fork which supports pijul.
at 1931b62baa4452616203ccbb356da72688bc4587 24 lines 1.0 kB view raw
1{{ define "repo/pipelines/fragments/logBlock" }} 2 <div id="lines" hx-swap-oob="beforeend"> 3 <details 4 id="step-{{ .Id }}" 5 {{ if not .Collapsed }}open{{ end }} 6 class="group pb-2 rounded-sm border border-gray-200 dark:border-gray-700"> 7 <summary 8 class="sticky top-0 pt-2 px-2 group-open:pb-2 group-open:mb-2 list-none cursor-pointer group-open:border-b border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800 hover:text-gray-500 hover:dark:text-gray-400"> 9 <div class="group-open:hidden flex items-center gap-1"> 10 {{ i "chevron-right" "w-4 h-4" }} 11 {{ .Name }} 12 </div> 13 <div class="hidden group-open:flex items-center gap-1"> 14 {{ i "chevron-down" "w-4 h-4" }} 15 {{ .Name }} 16 </div> 17 </summary> 18 <div class="font-mono whitespace-pre overflow-x-auto px-2"> 19 <div class="text-blue-600 dark:text-blue-300">{{ .Command }}</div> 20 <div id="step-body-{{ .Id }}"></div> 21 </div> 22 </details> 23 </div> 24{{ end }}