Personnalisation du bandeau de pagination

This commit is contained in:
Stanislas Jouffroy 2025-03-22 00:38:11 +01:00
parent e77784f1dc
commit d6f2b2b9fd
2 changed files with 58 additions and 0 deletions

14
layouts/a-propos.html Normal file
View file

@ -0,0 +1,14 @@
{{ define "main" }}
{{- if .Site.Home.Content -}}
{{- .Site.Home.Content -}}
{{- partial "edit-meta.html" . -}}
{{- else -}}
<h1>Customize your own home page</h1>
<p>The site is working. Don't forget to customize this homepage with your own. You typically have 2 choices :</p>
<ol>
<li>Create an _index.md document in <b>content</b> folder and fill it with Markdown content</li>
<li>Create an <b>index.html</b> file in the <b>static</b> folder and fill the file with HTML content</li>
<li>Configure your server to automatically redirect home page to one your documentation page</li>
</ol>
{{- end -}}
{{- end -}}