Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.html « layouts - github.com/vantagedesign/ace-documentation.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 85c67c280ff0603f97138fef526867501247111d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{{ 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 }}