accomplishments.html 539 B

12345678910111213141516171819
  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">
  6. {{ if not (.section.hideTitle) }}
  7. <h1 class="text-center">
  8. <span id="{{ $sectionID }}"></span>{{ .section.name }}</h1>
  9. {{ end }}
  10. <div class="container">
  11. <div class="row" id="acomplishment-card-holder">
  12. {{ range .accomplishments }}
  13. {{ partial "cards/accomplishments" . }}
  14. {{ end }}
  15. </div>
  16. </div>
  17. </div>