single-position.html 961 B

123456789101112131415161718192021
  1. <div class="col-10 col-lg-8">
  2. <div class="experience-entry-heading">
  3. {{ $position:= index .positions 0 }}
  4. <!-- For single position, give emphasis on the designation-->
  5. <h5>{{ $position.designation }}</h5>
  6. <h6>{{ if .company.url }}<a href={{.company.url}}>{{ .company.name }}</a>{{ else }}{{ .company.name }}{{ end }}</h6>
  7. <!-- Add experience duration info -->
  8. <p class="text-muted">{{ $position.start }} - {{ if $position.end }}{{ $position.end }}{{ else }}{{ i18n "present" }}{{ end }},
  9. {{ .company.location }}
  10. </p>
  11. </div>
  12. <!-- Add company overview -->
  13. <p>{{ .company.overview | markdownify }}</p>
  14. <!-- Add the responsibilities handled at this position -->
  15. <h6 class="text-muted">{{ i18n "responsibilities" }}</h6>
  16. <ul class="justify-content-around">
  17. {{ range $position.responsibilities }}
  18. <li>{{ . | markdownify }}</li>
  19. {{ end }}
  20. </ul>
  21. </div>