hugo-PaperMod/layouts/partials/index_profile.html
2020-10-02 14:35:38 +05:30

20 lines
724 B
HTML

<div class="profile">
{{- with .Site.Params.profileMode }}
<div class="profile_inner">
{{- if .imageUrl}}<img src="{{ .imageUrl}}" alt="{{ .imageTitle | default "profile image" }}" />{{- end}}
<h1>{{- .title | default $.Site.Title -}}</h1>
<span>{{- .subtitle -}}</span>
{{- partial "social_icons.html" $.Site.Params.socialIcons -}}
{{- with .buttons }}
<div class="buttons">
{{- range . -}}
<a class="button" href="{{ .url }}" rel="noopener" title="{{ .name | humanize }}">
<span class="button-inner">{{ .name }}</span>
</a>
{{- end -}}
</div>
{{- end }}
</div>
{{- end}}
</div>