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

github.com/cowboysmall-tools/hugo-devresume-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/experience.html')
-rw-r--r--layouts/partials/experience.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/layouts/partials/experience.html b/layouts/partials/experience.html
new file mode 100644
index 0000000..d930f7c
--- /dev/null
+++ b/layouts/partials/experience.html
@@ -0,0 +1,22 @@
+ <section class="work-section py-3">
+
+ <h3 class="text-uppercase resume-section-heading mb-4">{{ i18n "experiences" }}</h3>
+
+ {{ range .Site.Params.experience.list }}
+ <div class="item mb-3">
+ <div class="item-heading row align-items-center mb-2">
+ <h4 class="item-title col-12 col-md-6 col-lg-6 mb-2 mb-md-0">{{ .title }}</h4>
+ <div class="item-meta col-12 col-md-6 col-lg-6 text-muted text-left text-md-right">{{ .company }} | {{ .dates }}</div>
+ </div>
+ <div class="item-content">
+ <p>{{ with .details }}{{ . | markdownify }}{{ end }}</p>
+ <ul class="resume-list">
+ {{ range .items }}
+ <li><span class="resume-degree font-weight-bold">{{ .heading }}</span> {{ with .details }}{{ . | markdownify }}{{ end }}</li>
+ {{ end }}
+ </ul>
+ </div>
+ </div><!--//item-->
+ {{ end }}
+
+ </section><!--//work-section-->