Experience format update

This commit is contained in:
rox630 2020-11-24 18:58:48 +01:00
parent 203380f121
commit 05248cbaaf
4 changed files with 5 additions and 5 deletions

View file

@ -12,7 +12,7 @@ other = "Table of Contents"
other = "at"
[resume]
other = "My resume"
other = "My Resume"
[navigation]
other = "Navigation"

View file

@ -2,7 +2,7 @@
{{ if (index site.Data site.Language.Lang).author }}
{{ $author = (index site.Data site.Language.Lang).author }}
{{ end }}
{{ $authorImage:= "/assets/images/default-avatar.png" }}
{{ $authorImage:= "/assets/images/laurea3.png" }}
{{ if $author.image }}
{{ $authorImage = $author.image }}
{{ end }}

View file

@ -2,7 +2,7 @@
<div class="experience-entry-heading">
{{ $position:= index .positions 0 }}
<!-- For single position, give emphasis on the designation-->
<h5>{{ $position.designation }}</h5>
<h5>{{ $position.designation | markdownify}}</h5>
<h6>{{ if .company.url }}<a href={{.company.url}}>{{ .company.name }}</a>{{ else }}{{ .company.name }}{{ end }}</h6>
<!-- Add experience duration info -->
<p class="text-muted">{{ $position.start }} - {{ if $position.end }}{{ $position.end }}{{ else }}Present{{ end }},
@ -12,7 +12,7 @@
<!-- Add company overview -->
<p>{{ .company.overview | markdownify }}</p>
<!-- Add the responsibilities handled at this position -->
<h6 class="text-muted">Responsibilities:</h6>
<h6 class="text-muted">{{ if $position.responsibilities }}Responsibilities:{{ end }}</h6>
<ul class="justify-content-around">
{{ range $position.responsibilities }}
<li>{{ . | markdownify }}</li>

View file

@ -20,7 +20,7 @@
{{ $backgroundImage = site.Params.background }}
{{ end }}
{{ $authorImage:= "/assets/images/default-avatar.png" }}
{{ $authorImage:= "/assets/images/laurea3.png" }}
{{ if $author.image }}
{{ $authorImage = $author.image }}
{{ end }}