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

multiple-positions.html « experiences « sections « partials « layouts - github.com/hossainemruz/toha.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aae5f3d9b7eb5fc3152f54b7a5c03511a70d9141 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<div class="col-10 col-lg-8">
    <div class="experience-entry-heading">
        <!-- For multiple positions, give emphasis on the company name-->
        <h5>{{ if .company.url }}<a href={{.company.url}}>{{ .company.name }}</a>{{ else }}{{ .company.name }}{{ end }}</h5>

        <!-- Total experience duration on a company is time between the starting date of the oldest position and ending date of most recent position -->
        {{ $oldestPosition := index (last 1 .positions) 0}}
        {{ $mostRecentPosition := index (first 1 .positions) 0}}
        <p class="text-muted">
            {{ $oldestPosition.start }} - {{ if $mostRecentPosition.end }}{{ $mostRecentPosition.end }}{{ else }}Present{{ end }},
            {{ .company.location }}
        </p>
        <!-- Add company overview -->
        <p>{{ .company.overview | markdownify }}</p>
    </div>
    <!-- Add the positions information -->
    <div class="positions">
    {{ range $index,$position:= .positions }}
        <h6 class="designation">{{ $position.designation }}</h6>
        <p class="text-muted">{{ $position.start }} - {{if $position.end }} {{ $position.end }} {{else}} Present {{end}}</p>
        <!-- Add the responsibilities handled at this position -->
        <ul class="justify-content-around">
        {{ range $position.responsibilities }}
            <li>{{ . | markdownify }}</li>
        {{ end }}
        </ul>
    {{ end }}
    </div>
</div>