v3 development

This commit is contained in:
gurusabarish
2021-05-13 22:48:06 +05:30
parent 14d16483be
commit 54bcff5142
60 changed files with 3626 additions and 491 deletions
@@ -0,0 +1,45 @@
{{ if .Site.Params.usedothings }}
<section>
<div class="pt-3 do-things text-center" id="do-things">
<div class="container">
<div class="things-i-do text-primary font-weight-bold">
Things I do
</div>
<div class="do-things-card">
<div class="row pb-2 justify-content-center">
{{ range .Site.Params.Things }}
{{ if .url }}
<div class="col-lg-3 col-md-4">
<a id="nothing" href={{ .url | default "#" }} class="">
<div class="things shadow rounded p-4 my-2 mb-4 card bg-primary text-light">
<i class="{{ .logo }} fa-3x" width="3em" height="3em"></i>
<div class="p-2 font-weight-bold">
{{ .title }}
</div>
<div class="py-4 things-text">
{{ .description }}
</div>
</div>
</a>
</div>
{{ else }}
<div class="col-lg-3 col-md-4">
<div class="things shadow rounded p-4 my-2 mb-4 card bg-primary text-light">
<i class="{{ .logo }} fa-3x" width="3em" height="3em"></i>
<div class="p-2 font-weight-bold">
{{ .title }}
</div>
<div class="py-4 things-text">
{{ .description }}
</div>
</div>
</div>
{{ end }}
{{ end }}
</div>
</div>
</div>
</div>
</section>
{{ end }}