 8a0915bb81
			
		
	
	
		8a0915bb81
		
	
	
	
	
		
			
			use data instead of if else in partial, this makes iterating and display all the icons possible
		
			
				
	
	
		
			9 lines
		
	
	
		
			317 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			317 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <div class="social-icons">
 | |
|     {{- range .icons }}
 | |
|     <a href="{{ trim .url " " }}" target="_blank" rel="noopener noreferrer me" title="{{ .name | title }}">
 | |
|         {{- $icon_name := ( trim .name " " | lower )}}
 | |
|         {{ safeHTML (index $.svg $icon_name | default $.svg.default) }}
 | |
|     </a>
 | |
|     {{- end }}
 | |
| </div>
 |