single-position.html 1.1 KB

1234567891011121314151617181920212223
  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}} title="{{ .company.name }}" target="_blank" rel="noopener">{{ .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. {{ if $position.responsibilities }}
  16. <h6 class="text-heading">{{ i18n "responsibilities" }}</h6>
  17. <ul class="justify-content-around">
  18. {{ range $position.responsibilities }}
  19. <li>{{ . | markdownify }}</li>
  20. {{ end }}
  21. </ul>
  22. {{ end }}
  23. </div>