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

github.com/uicardiodev/hugo-uilite.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.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/layouts/partials/experience.html b/layouts/partials/experience.html
new file mode 100644
index 0000000..b344287
--- /dev/null
+++ b/layouts/partials/experience.html
@@ -0,0 +1,19 @@
+{{ $experience := .Site.Data.experience }}
+
+<section id="experience" class="green">
+ <h2 class="heading">{{ $experience.title }}</h2>
+ <div id="timeline">
+ {{ range $index, $element := $experience.experience }}
+ <div class="timeline-item clearfix">
+ <div class="timeline-icon"></div>
+
+ <div class="timeline-content {{ if eq (mod $index 2) 0 }} right {{ end }}">
+ <span class="date">{{ $element.timeperiod }}</span>
+ <h6 class="h3 my-2">{{ $element.company }}</h6>
+ <p class="">{{ $element.description }}</p>
+ </div>
+ </div>
+ {{ end }}
+ </div>
+
+</section> \ No newline at end of file