* Make home page sections dynamic and configurable * Fix navbar issue when no section is configured + fix next-prev navigator * Update exampleSite * Fix next-prev navigator * Make navbar brand URL context aware
13 lines
401 B
HTML
13 lines
401 B
HTML
<div class="container-fluid anchor pb-5" id="achievements">
|
|
<h1 class="text-center">{{ .section.name }}</h1>
|
|
<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>
|