social.html 396 B

123456789101112
  1. <h1 class="mb-0">{{ .Site.Params.profile.name }}</h1>
  2. <h2 class="mb-0">{{ .Site.Params.profile.tagline }}</h2>
  3. <h3 class="mb-4">{{ .Site.Params.profile.location }}</h3>
  4. <div class="mb-4 flex flex-wrap justify-center">
  5. {{ range.Site.Params.social.list }}
  6. <div class="mx-2">
  7. <a class="text-2xl" href="{{ .url }}">
  8. <i class="mt-1 {{ .icon }}"></i>
  9. </a>
  10. </div>
  11. {{ end }}
  12. </div>