2017-07-27 19:42:07 +00:00
|
|
|
{{ partial "header.html" . }}
|
|
|
|
<span id="sidebar-toggle-span">
|
2018-02-19 11:10:41 +00:00
|
|
|
<a href="#" id="sidebar-toggle" data-sidebar-toggle=""><i class="fas fa-bars"></i> navigation</a>
|
2017-07-27 19:42:07 +00:00
|
|
|
</span>
|
2016-04-10 22:09:03 +00:00
|
|
|
|
2017-07-27 19:42:07 +00:00
|
|
|
{{if .Site.Home.Content }}
|
|
|
|
{{.Site.Home.Content}}
|
|
|
|
{{else}}
|
|
|
|
{{if eq .Site.Language.Lang "fr"}}
|
|
|
|
<h1>Personaliser la page d'accueil</h1>
|
|
|
|
<p>
|
2018-01-17 10:02:16 +00:00
|
|
|
Le site fonctionne. Ne pas oublier de personaliser cette page avec votre propre contenu. 3 manières de faire :
|
2017-07-27 19:42:07 +00:00
|
|
|
</p>
|
|
|
|
<ul>
|
2017-08-20 15:09:06 +00:00
|
|
|
<li><b>1. </b> Créer un fichier _index.md dans le dossier <b>content</b> et le remplir de Markdown</li>
|
|
|
|
<li><b>2. </b> Créer un fichier index.html dans le dossier <b>static</b> et le remplir de code HTML</li>
|
2018-01-17 10:02:16 +00:00
|
|
|
<li><b>3. </b> Configurer le serveur http pour rediriger automatiquement la homepage vers la page de votre choix dans le site</li>
|
2017-07-27 19:42:07 +00:00
|
|
|
</ul>
|
|
|
|
{{else}}
|
|
|
|
<h1>Customize your own home page</h1>
|
|
|
|
<p>
|
2018-01-17 10:02:16 +00:00
|
|
|
The site is working. Don't forget to customize this homepage with your own. You typically have 3 choices :
|
2017-07-27 19:42:07 +00:00
|
|
|
</p>
|
|
|
|
<ul>
|
2017-08-20 15:09:06 +00:00
|
|
|
<li><b>1. </b> Create an _index.md document in <b>content</b> folder and fill it with Markdown content</li>
|
|
|
|
<li><b>2. </b> Create an <b>index.html</b> file in the <b>static</b> folder and fill the file with HTML content</li>
|
|
|
|
<li><b>3. </b> Configure your server to automatically redirect home page to one your documentation page</li>
|
2017-07-27 19:42:07 +00:00
|
|
|
</ul>
|
|
|
|
{{end}}
|
|
|
|
{{ end }}
|
2018-01-17 10:02:16 +00:00
|
|
|
{{ partial "footer.html" . }}
|