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:
authorTyler Lawson <tylerjlawson2@gmail.com>2020-10-08 05:05:11 +0300
committerTyler Lawson <tylerjlawson2@gmail.com>2020-10-08 05:05:11 +0300
commit01e991cb056ab7d98200b3789abd470747587146 (patch)
tree2ec9d10d3341a670be76f56aec61de0de3688b9f /layouts/partials/experiences.html
first commit, theme is working in myResume, now needs to be buttoned up for hugo theme request.
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>