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.html19
1 files changed, 0 insertions, 19 deletions
diff --git a/layouts/partials/schools.html b/layouts/partials/schools.html
deleted file mode 100644
index 390d022..0000000
--- a/layouts/partials/schools.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<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>
- {{ range .degrees }}
- <p>
- <em>{{ . }}</em>
- </p>
- {{ end }}
- </div>
- {{ end }}
-</section>