hugo-toha/layouts/partials/experiences/info/multiple-projects.html
Pau Trepat Segura f065c81cb5 Split experiences into single project or multiproject
The idea is try to follow the Linkedin approach for one vs multiple projects visualisation. 
Also removed the link from company to avoid useless clickout
2020-06-21 20:01:14 +02:00

14 lines
506 B
HTML

<div class="col-10 col-lg-8">
<div class="experience-entry-heading">
<h5>{{ .company.name }}</h5>
<h6>{{ .designation }}</h6>
<p class="text-muted">{{ .start }} - {{ if .end }} {{ .end }} {{ else }}Present{{ end }}, {{ .company.location }}</p>
</div>
<p>{{ .company.overview | markdownify }}</p>
<h6 class="text-muted">Responsibilities:</h6>
<ul class="justify-content-around">
{{ range .responsibilities }}
<li>{{ . | markdownify }}</li>
{{ end }}
</ul>
</div>