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.html23
1 files changed, 13 insertions, 10 deletions
diff --git a/layouts/partials/experiences.html b/layouts/partials/experiences.html
index 3d0a464..950c5b3 100644
--- a/layouts/partials/experiences.html
+++ b/layouts/partials/experiences.html
@@ -1,16 +1,19 @@
<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>
+ <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>
- <ul>
- {{ range .points }}
- <li>{{ . | markdownify }}</li>
- {{ end }}
- </ul>
- </div>
{{ end }}
</section>