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

social.html « partials « layouts - github.com/darshanbaral/aafu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2c5188cd64af4b1a1982e1b14140cfc9c99fe14e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<h1 class="mb-0">{{ .Site.Params.profile.name }}</h1>
<h2 class="mb-0">{{ .Site.Params.profile.tagline }}</h2>
<h3 class="mb-0">{{ .Site.Params.profile.location }}</h3>
<div class="mt-2 d-flex flex-wrap justify-content-center">
  {{ range.Site.Params.social.list }}
  <div style="height:45px; width:45px;">
    <a href="{{ .url }}">
      <i class="zoomlink mt-1 {{ .icon }}"></i>
    </a>
  </div>
  {{ end }}
</div>