{{ $sectionID := replace (lower .section.name) " " "-" }} {{ if .section.id }} {{ $sectionID = .section.id }} {{ end }}
{{ if not (.section.hideTitle) }}

{{ .section.name }}

{{ end }}
{{ $totalExperiences:= len .experiences }} {{ range $index,$experience:= .experiences }} {{ if eq (mod $index 2) 0 }}
{{ partial "sections/experiences/vertical-line.html" $index }} {{ partial "sections/experiences/experience-info.html" $experience }}
{{else}}
{{ partial "sections/experiences/experience-info.html" $experience }} {{ partial "sections/experiences/vertical-line.html" $index }}
{{ end }} {{ if lt $index (sub $totalExperiences 1) }} {{ partial "sections/experiences/horizontal-line.html" $index }} {{ end }} {{ end }}