2020-08-25 12:47:24 +01:00
|
|
|
<div class="profile">
|
2020-09-23 08:22:32 +01:00
|
|
|
{{- with .Site.Params.profileMode }}
|
2020-08-25 12:47:24 +01:00
|
|
|
<div class="profile_inner">
|
2021-03-30 13:37:36 +01:00
|
|
|
{{- 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>
|
2020-10-02 09:16:49 +01:00
|
|
|
{{- partial "social_icons.html" $.Site.Params.socialIcons -}}
|
|
|
|
|
2020-09-06 15:37:57 +01:00
|
|
|
{{- with .buttons }}
|
2020-08-28 13:57:26 +01:00
|
|
|
<div class="buttons">
|
2021-03-30 13:37:36 +01:00
|
|
|
{{- range . }}
|
2021-05-01 17:43:54 +01:00
|
|
|
<a class="button" href="{{ trim .url " " }}" rel="noopener" title="{{ .name | title }}">
|
|
|
|
<span class="button-inner">{{ .name | title }}</span>
|
2020-09-23 12:09:23 +01:00
|
|
|
</a>
|
2021-03-30 13:37:36 +01:00
|
|
|
{{- end }}
|
2020-08-28 13:57:26 +01:00
|
|
|
</div>
|
|
|
|
{{- end }}
|
2020-08-25 12:47:24 +01:00
|
|
|
</div>
|
2020-09-23 08:22:32 +01:00
|
|
|
{{- end}}
|
2020-10-17 10:32:40 +01:00
|
|
|
</div>
|