Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/mertbakir/resume-a4.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/section-experience.html')
-rw-r--r--layouts/partials/section-experience.html13
1 files changed, 12 insertions, 1 deletions
diff --git a/layouts/partials/section-experience.html b/layouts/partials/section-experience.html
index 2fa580a..dc94e9b 100644
--- a/layouts/partials/section-experience.html
+++ b/layouts/partials/section-experience.html
@@ -1,16 +1,27 @@
+
{{ range .Data.experience }}
+{{ $page := .page | default 1 }}
+{{- if eq $.Page $page -}}
<div class="item group">
<h2 class="item-title">{{ .company }}</h2>
{{ range .roles }}
<div class="item">
<div class="flex-row">
<span class="job-title">{{ .role }}</span>
- <span class="date">{{ .date }}</span>
+ <span class="soft-color">{{ .date }}</span>
</div>
+
+ {{- if and $.Params.experience.tools.show .tools -}}
+ <div class="flex-row">
+ <span></span>
+ <span class="soft-color"><i>{{ $.Params.experience.tools.title }}: {{ .tools }}</i></span></div>
+ {{- end -}}
+
{{ if .details }}
{{- partial "markdown" .details }}
{{ end }}
</div>
{{ end }}
</div>
+{{- end -}}
{{ end }}