WIP: need help adding above 6 sections doesnt fit navbar

This commit is contained in:
HenzelMoras 2021-03-24 19:46:10 +05:30
parent 1c3154d47a
commit 8abdd621d0
4 changed files with 167 additions and 1 deletions

View file

@ -0,0 +1,18 @@
{{ $sectionID := replace (lower .section.name) " " "-" }}
{{ if .section.id }}
{{ $sectionID = .section.id }}
{{ end }}
<div class="container-fluid anchor pb-5 accomplishments-section" id="{{ $sectionID }}">
{{ if not (.section.hideTitle) }}
<h1 class="text-center">{{ .section.name }}</h1>
{{ end }}
<div class="container">
<div class="row" id="acomplishment-card-holder">
{{ range .certificates }}
{{ partial "cards/accomplishments" . }}
{{ end }}
</div>
</div>
</div>