Files
hugo-profile/layouts/partials/sections/do_things.html
T
gurusabarish bdfa43b9c1 version 2.10
2021-03-14 01:32:57 +05:30

29 lines
1.1 KiB
HTML

{{ if .Site.Params.usedothings }}
<section>
<div class="do-things text-center" id="do-things">
<div class="container">
<div class="things-i-do text-primary py-3 font-weight-bold">
Things I do
</div>
<div class="do-things-card">
<div class="row pb-2 justify-content-center">
{{ range .Site.Params.Things }}
<div class="col-lg-3 col-md-4">
<div class="things shadow rounded p-4 my-2 mb-4 card btn-outline-primary">
<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 }}
</div>
</div>
</div>
</div>
</section>
{{ end }}