Add i18n to experiences section
This commit is contained in:
parent
b1e1b7c5d6
commit
08fe0bfcfe
2 changed files with 8 additions and 2 deletions
|
@ -73,3 +73,9 @@ other = "Extracurricular Activities"
|
||||||
|
|
||||||
[see_more]
|
[see_more]
|
||||||
other = "See More"
|
other = "See More"
|
||||||
|
|
||||||
|
[responsibilities]
|
||||||
|
other = "Responsibilities:"
|
||||||
|
|
||||||
|
[present]
|
||||||
|
other = "Present"
|
|
@ -5,14 +5,14 @@
|
||||||
<h5>{{ $position.designation }}</h5>
|
<h5>{{ $position.designation }}</h5>
|
||||||
<h6>{{ if .company.url }}<a href={{.company.url}}>{{ .company.name }}</a>{{ else }}{{ .company.name }}{{ end }}</h6>
|
<h6>{{ if .company.url }}<a href={{.company.url}}>{{ .company.name }}</a>{{ else }}{{ .company.name }}{{ end }}</h6>
|
||||||
<!-- Add experience duration info -->
|
<!-- Add experience duration info -->
|
||||||
<p class="text-muted">{{ $position.start }} - {{ if $position.end }}{{ $position.end }}{{ else }}Present{{ end }},
|
<p class="text-muted">{{ $position.start }} - {{ if $position.end }}{{ $position.end }}{{ else }}{{ i18n "present" }}{{ end }},
|
||||||
{{ .company.location }}
|
{{ .company.location }}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<!-- Add company overview -->
|
<!-- Add company overview -->
|
||||||
<p>{{ .company.overview | markdownify }}</p>
|
<p>{{ .company.overview | markdownify }}</p>
|
||||||
<!-- Add the responsibilities handled at this position -->
|
<!-- Add the responsibilities handled at this position -->
|
||||||
<h6 class="text-muted">Responsibilities:</h6>
|
<h6 class="text-muted">{{ i18n "responsibilities" }}</h6>
|
||||||
<ul class="justify-content-around">
|
<ul class="justify-content-around">
|
||||||
{{ range $position.responsibilities }}
|
{{ range $position.responsibilities }}
|
||||||
<li>{{ . | markdownify }}</li>
|
<li>{{ . | markdownify }}</li>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue