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.html19
1 files changed, 0 insertions, 19 deletions
diff --git a/layouts/partials/experiences.html b/layouts/partials/experiences.html
deleted file mode 100644
index 950c5b3..0000000
--- a/layouts/partials/experiences.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<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>{{ . | markdownify }}</li>
- {{ end }}
- </ul>
- </div>
- {{ end }}
-</section>