mirror of
https://git.adityakumar.xyz/hugo-devresume-theme.git
synced 2024-11-09 14:59:45 +00:00
92f57b4430
using `tel:` without `safeURL` will replace it with `#ZgotmplZ` in url. Please see the below link for more details. https://gohugo.io/functions/safeurl/#prose
9 lines
671 B
HTML
9 lines
671 B
HTML
|
|
<div class="resume-contact col-12 col-md-6 col-lg-4 col-xl-3">
|
|
<ul class="list-unstyled mb-0">
|
|
{{ range .Site.Params.contact.list }}
|
|
<li class="mb-2"><i class="{{ .style }} {{ .icon }} fa-fw fa-lg mr-2 "></i><a class="resume-link" href="{{ .url | safeURL }}">{{ .text }}</a></li>
|
|
{{ end }}
|
|
<li class="mb-0"><i class="fas fa-map-marker-alt fa-fw fa-lg mr-2"></i>{{ .Site.Params.contact.location }}</li>
|
|
</ul>
|
|
</div><!--//resume-contact-->
|