hugo-theme-relearn/layouts/index.html

16 lines
678 B
HTML
Raw Normal View History

{{- partial "header.html" . }}
{{if .Site.Home.Content }}
{{.Site.Home.Content}}
{{else}}
2021-08-23 21:57:56 +00:00
<h1>Customize your own home page</h1>
<p>
The site is working. Don't forget to customize this page with your own. You typically have 3 choices :
2021-08-23 21:57:56 +00:00
</p>
<ul>
<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>
</ul>
{{ end }}
{{- partial "footer.html" . }}