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

github.com/tylerjlawson/simple-resume.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.html35
1 files changed, 35 insertions, 0 deletions
diff --git a/layouts/index.html b/layouts/index.html
new file mode 100644
index 0000000..cfd0b41
--- /dev/null
+++ b/layouts/index.html
@@ -0,0 +1,35 @@
+{{ define "main" }}
+<main>
+ {{ with .Site.Data.content }}
+ <div class="box">
+ <div class="wrap">
+ {{ partial "header.html" . }}
+ {{ with .objective}}
+ <div>
+ <h2>Objective</h2>
+ <p>
+ {{ . }}
+ </p>
+ </div>
+ {{ end }}
+ {{ with .schools }}
+ {{ partial "schools.html" . }}
+ {{ end }}
+ {{ with .experiences }}
+ {{ partial "experiences.html" . }}
+ {{ end }}
+ {{ range .info }}
+ <section>
+ <h2>{{ .name }}</h2>
+ <ul>
+ {{ range .points }}
+ <li>{{ . }}</li>
+ {{ end }}
+ </ul>
+ </section>
+ {{ end }}
+ </div>
+ </div>
+ {{ end }}
+</main>
+{{ end }}