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

social.html « partials « layouts - github.com/darshanbaral/ghazal.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 72f2a6e5bd4ed4b5009680328bce6bc19f712d45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<div
  class="social-icons"
  style="
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1em;
  "
>
  {{ range $key, $val := .Site.Params.social }}

  <a href="{{ $val }}">
    <i
      class="social-icon"
      style="
        display: inline-flex;
        padding: 10px;
        border-radius: 50%;
        align-self: center;
      "
      >{{ partial (print "icons/" $key ".html") . }}</i
    ></a
  >

  {{ end }}
</div>