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/experiences.html')
-rw-r--r--layouts/partials/experiences.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/layouts/partials/experiences.html b/layouts/partials/experiences.html
new file mode 100644
index 0000000..76acd71
--- /dev/null
+++ b/layouts/partials/experiences.html
@@ -0,0 +1,16 @@
+<section>
+ <h2>Experience</h2>
+ {{ range . }}
+ <div>
+ <div class="heading-line">
+ <h3>{{ .position }} at {{ .company }} - {{ .location }}</h3>
+ <h3>{{ .startdate }} - {{ if .enddate }}{{ .enddate }}{{ else }}Current{{ end }}</h3>
+ </div>
+ <ul>
+ {{ range .points }}
+ <li>{{ . }}</li>
+ {{ end }}
+ </ul>
+ </div>
+ {{ end }}
+</section>