14 lines
		
	
	
		
			453 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			453 B
		
	
	
	
		
			HTML
		
	
	
	
| {{ if $.Param "showSocialLinks" }}
 | |
| <div class="footer__social">
 | |
|   <div class="social">
 | |
|     {{ range $name, $path := $.Param "socialOptions" }}
 | |
|       {{ if $path }}
 | |
|       <a href="{{ $path | safeURL }}" title="{{ $name }}" aria-label="{{ $name }}">
 | |
|         {{ partial (print "svgs/social/" $name ".svg") (dict "width" 32 "height" 32) }}
 | |
|       </a>
 | |
|       {{ end }}      
 | |
|     {{ end }}
 | |
|     {{ partial "footer/links-feed.html" . }}
 | |
|   </div>
 | |
| </div>
 | |
| {{ end }} |