-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
566bd5b
commit f1dd4d4
Showing
2 changed files
with
27 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<ul style="display: flex; flex-wrap: wrap; list-style-type: none; padding: 0" class="social-list m-2 text-center"> | ||
<p class="follow-icon-list flex flex-row items-center justify-center flex-wrap"> | ||
{{ range . }} | ||
{{- $icon := index (split . " ") 0 -}} | ||
{{- $url := index (split . " ") 1 -}} | ||
<li><a class="user-social-item flex m-1" rel="me" href="{{- $url -}}"><span class="platform-icon rounded-lg bg-no-repeat" style="background-image: url("/icons-96x96/{{- $icon -}}.png");" title="find me on {{- $icon -}}"></span><span class="platform-label visually-hidden text-indigo-800 text-xs uppercase max-w-xs inline-block">find me on {{- $icon -}}</span></a></li> | ||
{{ end }} | ||
</p> | ||
</ul> |