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/partials/schools.html')
-rw-r--r--layouts/partials/schools.html23
1 files changed, 13 insertions, 10 deletions
diff --git a/layouts/partials/schools.html b/layouts/partials/schools.html
index 3daf5ac..390d022 100644
--- a/layouts/partials/schools.html
+++ b/layouts/partials/schools.html
@@ -1,16 +1,19 @@
<section>
<h2>Education</h2>
{{ range . }}
- <div class="school">
- <div class="heading-line">
- <h3>{{ .name }} - {{ .location }}</h3>
- <h3>{{ .startdate }} - {{ if .enddate }}{{ .enddate }}{{ else }}Current{{ end }}</h3>
+ <div class="school">
+ <div class="heading-line">
+ <h3>{{ .name }} - {{ .location }}</h3>
+ <h3>
+ {{ .startdate }} -
+ {{ if .enddate }}{{ .enddate }}{{ else }}Current{{ end }}
+ </h3>
+ </div>
+ {{ range .degrees }}
+ <p>
+ <em>{{ . }}</em>
+ </p>
+ {{ end }}
</div>
- {{ range .degrees }}
- <p>
- <em>{{ . }}</em>
- </p>
- {{ end }}
- </div>
{{ end }}
</section>