accomplishments.html 676 B

12345678910111213141516171819202122
  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. {{ else }}
  10. <h1 class="text-center" style="display: none">
  11. <span id="{{ $sectionID }}"></span>{{ .section.name }}</h1>
  12. {{ end }}
  13. <div class="container">
  14. <div class="row" id="accomplishment-card-holder">
  15. {{ range .accomplishments }}
  16. {{ partial "cards/accomplishments" . }}
  17. {{ end }}
  18. </div>
  19. </div>
  20. </div>