blob: 2a10cb5dc3d38347ad3dd96efd07a31917bf0574 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<table class="social-icons">
{{ range $.Site.Params.Social }}
<tr>
<th>
{{ $network := humanize .id }}
{{ $network | title }}
{{ partial "font-awesome.html" (dict "iconName" .id "network" $network) }}
</th>
<td>
<a href="{{ .url }}" rel="me">
{{ .name }}
</a>
</td>
</tr>
{{ end }}
</table>
|