aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/partials/meta_links.html
blob: 3ee7c7cca45e99467dccb5aafaebef7fa8be9788 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{ with .Params.meta_links }}
  <div class="cf ph4">
    {{ range $key, $val := . }}
      <a
        class="fr f6 ba br3 m-2 px-2 py-1 w3-text-theme w3-hover-theme ttu"
        href="{{ . }}"
        target="_blank"
        rel="noopener"
      >
        {{ $key }}
      </a>
    {{ end }}
    <div></div>
  </div>
{{ end }}