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: 717dead1a6b56d7459913df3130726cb3f4991ce (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
<div
  style="
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1em;
  "
>
  {{ range $key, $val := .Site.Params.social }}

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

  {{ end }}
</div>