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

github.com/darshanbaral/sada.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.html29
1 files changed, 14 insertions, 15 deletions
diff --git a/layouts/partials/experience.html b/layouts/partials/experience.html
index 8138be9..c9108a6 100644
--- a/layouts/partials/experience.html
+++ b/layouts/partials/experience.html
@@ -1,16 +1,15 @@
-<h3>
- <i class="fas fa-briefcase"></i>
- {{ .Site.Params.experiences.title }}
-</h3>
+<div class="mb-8">
+ <h2 class="mt-8 sm:mt-0">
+ <i class="fas fa-briefcase"></i>
+ {{ .Site.Params.experiences.title }}
+ </h2>
-{{ range.Site.Params.jobs.list }}
-<dl>
- <dt>{{ .position }}</dt>
- <dd class="mb-0 ml-3">{{ .dates | markdownify }}</dd>
- <dd class="mb-0 ml-3">
- {{ if .link }}<a class="text-warning" href="{{ .link }}">{{ .company }}</a
- >{{ else }} {{ .company }} {{ end }}
- </dd>
- <dd class="mb-0 ml-3">{{ .details | markdownify }}</dd>
-</dl>
-{{ end }}
+ {{ range.Site.Params.jobs.list }}
+ <h3 class="mb-1">{{ .position }}</h3>
+ <p class="ml-1 mb-0">
+ {{ if .link }}<a class="font-semibold" href="{{ .link }}">{{ .company }}</a>
+ {{ else }}{{ .company }}{{ end }} &middot; {{ .dates | markdownify }}
+ </p>
+ <p class="ml-2 mb-0">{{ .details | markdownify }}</p>
+ {{ end }}
+</div>