accomplishments.html 519 B

123456789101112131415161718
  1. {{ $sectionID := replace (lower .section.name) " " "-" }}
  2. {{ if .section.id }}
  3. {{ $sectionID = .section.id }}
  4. {{ end }}
  5. <div class="container-fluid anchor pb-5 accomplishments-section" id="{{ $sectionID }}">
  6. {{ if not (.section.hideTitle) }}
  7. <h1 class="text-center">{{ .section.name }}</h1>
  8. {{ end }}
  9. <div class="container">
  10. <div class="row" id="acomplishment-card-holder">
  11. {{ range .accomplishments }}
  12. {{ partial "cards/accomplishments" . }}
  13. {{ end }}
  14. </div>
  15. </div>
  16. </div>