2020-08-25 07:47:24 -04:00
|
|
|
<div class="profile">
|
2020-09-23 03:22:32 -04:00
|
|
|
{{- with .Site.Params.profileMode }}
|
2020-08-25 07:47:24 -04:00
|
|
|
<div class="profile_inner">
|
2020-09-23 03:22:32 -04:00
|
|
|
{{- if .imageUrl}}<img src="{{ .imageUrl}}" alt="{{ .imageTitle | default "profile image" }}" />{{- end}}
|
2020-10-17 05:32:40 -04:00
|
|
|
<h1>{{- .title | default $.Site.Title | markdownify -}}</h1>
|
|
|
|
<span>{{- .subtitle | markdownify -}}</span>
|
2020-10-02 04:16:49 -04:00
|
|
|
{{- partial "social_icons.html" $.Site.Params.socialIcons -}}
|
|
|
|
|
2020-09-06 10:37:57 -04:00
|
|
|
{{- with .buttons }}
|
2020-08-28 08:57:26 -04:00
|
|
|
<div class="buttons">
|
2020-09-23 07:09:23 -04:00
|
|
|
{{- range . -}}
|
|
|
|
<a class="button" href="{{ .url }}" rel="noopener" title="{{ .name | humanize }}">
|
|
|
|
<span class="button-inner">{{ .name }}</span>
|
|
|
|
</a>
|
|
|
|
{{- end -}}
|
2020-08-28 08:57:26 -04:00
|
|
|
</div>
|
|
|
|
{{- end }}
|
2020-08-25 07:47:24 -04:00
|
|
|
</div>
|
2020-09-23 03:22:32 -04:00
|
|
|
{{- end}}
|
2020-10-17 05:32:40 -04:00
|
|
|
</div>
|