simpletheme/layouts/partials/profile_link.html
David Gunter 44be73a11c Use a partial to render social profile links.
The .personalize.toml now requires all social profile links be TOML table entries.
2020-04-18 18:00:18 -07:00

7 lines
208 B
HTML

{{ if and (isset . "url") ( ne .url "") }}
<tr>
<td><i class="fab fa-{{ lower .name }}" aria-hidden="true"></i></td>
<td>&nbsp;<a href="{{ url }}" target="_blank">{{ .name }}</a></td>
</tr>
{{ end }}