Welcome to mirror list, hosted at ThFree Co, Russian Federation.

image-social.html « partials « layouts - github.com/darshanbaral/mero.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 26947f0083073ce1500ceb4be1dc63dd1059c07e (plain)
1
2
3
4
5
6
7
8
9
10
<img class="w-100 rounded mb-2" src="{{ `/images/main.jpeg` | relURL }}" />
<div class="d-flex justify-content-center mt-2">
  {{ range .Site.Params.social.list }}
  <div class="ml-1 mr-1" style="width: 40px; height: 40px;">
    <a href="{{ .url }}">
      <i class="social-icon {{ .class }} {{ .icon }}"></i>
    </a>
  </div>
  {{ end }}
</div>