mirror of
				https://github.com/Wonderfall/hugo-WonderMod.git
				synced 2025-10-31 19:55:24 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			860 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			860 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <div class="profile">
 | |
|     {{- with .Site.Params.profileMode }}
 | |
|     <div class="profile_inner">
 | |
|         {{- if .imageUrl}}<img src="{{ .imageUrl}}" alt="{{ .imageTitle | default "profile image" }}"
 | |
|             height="{{- .imageHeight | default 150 -}}" width="{{- .imageWidth | default 150 -}}" />{{- end}}
 | |
|         <h1>{{- .title | default $.Site.Title | markdownify -}}</h1>
 | |
|         <span>{{- .subtitle | markdownify -}}</span>
 | |
|         {{- partial "social_icons.html" $.Site.Params.socialIcons -}}
 | |
| 
 | |
|         {{- with .buttons }}
 | |
|         <div class="buttons">
 | |
|             {{- range . -}}
 | |
|             <a class="button" href="{{ trim .url " " }}" rel="noopener" title="{{ .name | humanize }}">
 | |
|                 <span class="button-inner">{{ .name }}</span>
 | |
|             </a>
 | |
|             {{- end -}}
 | |
|         </div>
 | |
|         {{- end }}
 | |
|     </div>
 | |
|     {{- end}}
 | |
| </div>
 | 
