2020-08-25 13:47:24 +02:00
|
|
|
<div class="profile">
|
2020-09-06 16:37:57 +02:00
|
|
|
{{ with .Site.Params.profileMode }}
|
2020-08-25 13:47:24 +02:00
|
|
|
<div class="profile_inner">
|
2020-09-06 16:37:57 +02:00
|
|
|
{{if .imageUrl}}<img src="{{ .imageUrl}}" alt="{{ .imageTitle | default "profile image" }}" />{{end}}
|
|
|
|
<h1>{{ .title | default $.Site.Title }}</h1>
|
|
|
|
{{- with $.Site.Params.socialIcons }}
|
2020-08-25 13:47:24 +02:00
|
|
|
<div class="social-icons">
|
|
|
|
{{ partial "social-icons.html" . }}
|
|
|
|
</div>
|
|
|
|
{{- end }}
|
2020-09-06 16:37:57 +02:00
|
|
|
{{- with .buttons }}
|
2020-08-28 14:57:26 +02:00
|
|
|
<div class="buttons">
|
|
|
|
{{ partial "indexProfileButtons.html" . }}
|
|
|
|
</div>
|
|
|
|
{{- end }}
|
2020-08-25 13:47:24 +02:00
|
|
|
</div>
|
2020-09-06 16:37:57 +02:00
|
|
|
{{end}}
|
2020-08-25 13:47:24 +02:00
|
|
|
</div>
|