* Allow section titles to be hidden within the section themselves * Show sections in footer to match navbar
15 lines
503 B
HTML
15 lines
503 B
HTML
<div class="container-fluid anchor pb-5 achievements-section" id="{{ replace (lower .section.name) " " "-" }}">
|
|
{{ if not (.section.hideTitle) }}
|
|
<h1 class="text-center">{{ .section.name }}</h1>
|
|
{{ end }}
|
|
<div class="container">
|
|
<div class="row" id="gallery">
|
|
</div>
|
|
</div>
|
|
<!-- achievements-holder holds achievement-entry -->
|
|
<div class="d-none" id="achievements-holder">
|
|
{{ range .achievements }}
|
|
{{ partial "misc/achievement.html" . }}
|
|
{{ end }}
|
|
</div>
|
|
</div>
|