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

github.com/vantagedesign/ace-documentation.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/index.html')
-rw-r--r--layouts/index.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/layouts/index.html b/layouts/index.html
new file mode 100644
index 0000000..85c67c2
--- /dev/null
+++ b/layouts/index.html
@@ -0,0 +1,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 }}