hugo-PaperMod/layouts/partials/index_profile.html

22 lines
860 B
HTML
Raw Normal View History

2020-08-25 13:47:24 +02:00
<div class="profile">
{{- with .Site.Params.profileMode }}
2020-08-25 13:47:24 +02:00
<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 -}}
2020-09-06 16:37:57 +02:00
{{- 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 }}
2020-08-25 13:47:24 +02:00
</div>
{{- end}}
</div>