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

github.com/uicardiodev/hugo-uilite.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.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/layouts/index.html b/layouts/index.html
new file mode 100644
index 0000000..3d3b2c0
--- /dev/null
+++ b/layouts/index.html
@@ -0,0 +1,20 @@
+{{ partial "header.html" . }}
+{{ partial "sidebar.html" . }}
+
+<div class="main-content">
+ {{ if .Site.Data.skills }}{{ partial "skills.html" . }}{{ end }}
+ {{ if .Site.Data.experience }}{{ partial "experience.html" . }}{{ end }}
+ {{ if .Site.Data.services }}{{ partial "services.html" . }}{{ end }}
+</div>
+
+<div style="z-index: 4; position: relative;">
+ {{ if gt (len (where .Data.Pages "Type" "blog")) 0 }}{{ partial "blog.html" . }}{{ end }}
+ {{ if gt (len (where .Data.Pages "Type" "work")) 0 }}{{ partial "work.html" . }}{{ end }}
+</div>
+
+<div class="main-content">
+ {{ partial "contact.html" . }}
+</div>
+
+{{ partial "footer-scripts.html" . }}
+ \ No newline at end of file