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.html64
1 files changed, 32 insertions, 32 deletions
diff --git a/layouts/index.html b/layouts/index.html
index 4fdc5f9..b851493 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -1,35 +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>{{ . | markdownify }}</li>
+ <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 }}
- </ul>
- </section>
- {{ end }}
- </div>
- </div>
- {{ end }}
-</main>
+ {{ range .info }}
+ <section>
+ <h2>{{ .name }}</h2>
+ <ul>
+ {{ range .points }}
+ <li>{{ . | markdownify }}</li>
+ {{ end }}
+ </ul>
+ </section>
+ {{ end }}
+ </div>
+ </div>
+ {{ end }}
+ </main>
{{ end }}