Refactor sidebar logic + fix responsiveness

This commit is contained in:
hossainemruz 2020-07-22 03:36:53 +06:00
parent 647578e88b
commit 8ec90ee255
53 changed files with 1712 additions and 671 deletions

View file

@ -0,0 +1,12 @@
<div class="container-fluid anchor pb-5 skills-section" id="{{ replace (lower .section.name) " " "-" }}">
{{ if not (.section.hideTitle) }}
<h1 class="text-center">{{ .section.name }}</h1>
{{ end }}
<div class="container d-flex-block">
<div class="row" id="primary-skills">
{{ range .skills }}
{{ partial "cards/skill.html" . }}
{{ end }}
</div>
</div>
</div>