fime/themes/ace-documentation/layouts/index.html
2022-09-28 21:20:15 +02:00

20 lines
556 B
HTML

{{ define "main" }}
{{if .Site.Home.Content }}
<h1>{{ .Title }}</h1>
{{.Site.Home.Content}}
{{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>
<ul>
<li><b>1. </b> Create an _index.md document in the content folder</li>
<li><b>2. </b> Configure your server to automatically redirect this home page to one of your documentation pages</li>
</ul>
<p><i class="fa fa-heart fa-4x"></i></p>
{{ end }}
{{ end }}