13245058fa
The blog needed a visual identity and a path back to the source: hero photo of the Axer on the home page, village photo and repo link on the about page, and a git-clone nav link. Privacy pass before the repo goes public: move the two cab photos with an identifiable face and the seller ad screenshot out of the repo (kept in BUS-photos-privees locally), update INDEX.md and CLAUDE.md accordingly.
35 lines
1.1 KiB
HTML
35 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="{{ site.Language.Locale }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ if not .IsHome }}{{ .Title }} — {{ end }}{{ site.Title }}</title>
|
|
<meta name="description" content="{{ with .Description }}{{ . }}{{ else }}{{ site.Params.description }}{{ end }}">
|
|
<link rel="stylesheet" href="{{ "css/terminal.css" | relURL }}">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<pre class="banner">
|
|
____ _ _ ____
|
|
| __ )| | | / ___| bus.saillant.cc
|
|
| _ \| | | \___ \ Irisbus Axer -> atelier mobile
|
|
| |_) | |_| |___) | electronique . fab numerique . VASP
|
|
|____/ \___/|____/
|
|
</pre>
|
|
<nav>
|
|
<span class="prompt">{{ site.Params.prompt }}:~$</span>
|
|
<a href="{{ "/" | relURL }}">ls posts/</a>
|
|
<a href="{{ "/a-propos/" | relURL }}">cat a-propos.md</a>
|
|
<a href="https://git.saillant.cc/electron-rare/bus-axer">git clone</a>
|
|
</nav>
|
|
</header>
|
|
<main>
|
|
{{ block "main" . }}{{ end }}
|
|
</main>
|
|
<footer>
|
|
<span class="prompt">{{ site.Params.prompt }}:~$</span> uptime
|
|
— chantier démarré en 2026, horizon 5 ans. Généré par Hugo.
|
|
</footer>
|
|
</body>
|
|
</html>
|