Amélioration et simplification du fil d'Ariane.
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2026-03-18 13:50:56 +01:00
parent 5eeba425c9
commit 3e69a53387
5 changed files with 12 additions and 14 deletions
+8 -4
View File
@@ -74,14 +74,18 @@ a:active {
// Prompt and command line. // Prompt and command line.
// ======================== // ========================
.cmdline { .cmdblock {
margin: 0; margin: 0;
padding: 0; padding: 0;
}
.prompt { p, ol, ul {
padding: 0;
margin: 0; margin: 0;
padding: 0;
}
p.prompt:before {
content: "$ ";
}
} }
// Breadcrumb. // Breadcrumb.
+2 -2
View File
@@ -1,10 +1,10 @@
<div class="cmdblock"> <div class="cmdblock">
<nav aria-label="breadcrumb" class="breadcrumb"> <nav aria-label="breadcrumb" class="breadcrumb">
{{- partial "cmdline" (slice "pwd") }} <p aria-hidden="true" class="prompt">pwd</p>
<ol> <ol>
{{ range .Ancestors.Reverse }} {{ range .Ancestors.Reverse }}
<li> <li>
<a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a> <a class="ancestor" href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
</li> </li>
{{ end }} {{ end }}
<li class="active"> <li class="active">
-2
View File
@@ -1,2 +0,0 @@
<span class="cmdline" aria-hidden="true">{{ partial "prompt" . }}{{ partial "command" . }}</span>
{{/* vim: set tw=80 ts=2 sw=2 sts=2 ft=gohtmltmpl: */}}
-2
View File
@@ -1,2 +0,0 @@
<span class="command">{{ delimit . " " }}</span>
{{/* vim: set tw=80 ts=2 sw=2 sts=2 ft=gohtmltmpl: */}}
-2
View File
@@ -1,2 +0,0 @@
<span class="prompt" >$</span>
{{/* vim: set tw=80 ts=2 sw=2 sts=2 ft=gohtmltmpl: */}}