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