2020-08-25 13:47:24 +02:00
|
|
|
<div class="profile">
|
2022-03-27 15:14:06 +02:00
|
|
|
{{- with site.Params.profileMode }}
|
2020-08-25 13:47:24 +02:00
|
|
|
<div class="profile_inner">
|
2021-03-30 14:37:36 +02:00
|
|
|
{{- if .imageUrl -}}
|
2022-03-27 16:25:28 +02:00
|
|
|
{{- $img := resources.Get .imageUrl }}
|
|
|
|
{{- if $img }}
|
|
|
|
{{- $processableFormats := (slice "jpg" "jpeg" "png" "tif" "bmp" "gif") -}}
|
|
|
|
{{- if hugo.IsExtended -}}
|
|
|
|
{{- $processableFormats = $processableFormats | append "webp" -}}
|
|
|
|
{{- end -}}
|
|
|
|
{{- $prod := (hugo.IsProduction | or (eq site.Params.env "production")) }}
|
|
|
|
{{- if and (in $processableFormats $img.MediaType.SubType) (eq $prod true)}}
|
|
|
|
{{- if (not (and (not .imageHeight) (not .imageWidth))) }}
|
|
|
|
{{- $img = $img.Resize (printf "%dx%d" .imageWidth .imageHeight) }}
|
|
|
|
{{- else if .imageHeight }}
|
|
|
|
{{- $img = $img.Resize (printf "x%d" .imageHeight) }}
|
|
|
|
{{ else if .imageWidth }}
|
|
|
|
{{- $img = $img.Resize (printf "%dx" .imageWidth) }}
|
|
|
|
{{ else }}
|
|
|
|
{{- $img = $img.Resize "150x150" }}
|
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|
|
|
|
<img src="{{ $img.Permalink }}" alt="{{ .imageTitle | default "profile image" }}"
|
|
|
|
height="{{ .imageHeight | default 150 }}" width="{{ .imageWidth | default 150 }}" />
|
|
|
|
{{- else }}
|
2022-01-13 16:05:56 +01:00
|
|
|
<img src="{{ .imageUrl | absURL }}" alt="{{ .imageTitle | default "profile image" }}"
|
2021-03-30 14:37:36 +02:00
|
|
|
height="{{ .imageHeight | default 150 }}" width="{{ .imageWidth | default 150 }}" />
|
|
|
|
{{- end }}
|
2022-03-27 16:25:28 +02:00
|
|
|
{{- end }}
|
2022-03-27 15:14:06 +02:00
|
|
|
<h1>{{ .title | default site.Title | markdownify }}</h1>
|
2021-03-30 14:37:36 +02:00
|
|
|
<span>{{ .subtitle | markdownify }}</span>
|
2022-03-27 15:14:06 +02:00
|
|
|
{{- partial "social_icons.html" site.Params.socialIcons -}}
|
2020-10-02 10:16:49 +02:00
|
|
|
|
2020-09-06 16:37:57 +02:00
|
|
|
{{- with .buttons }}
|
2020-08-28 14:57:26 +02:00
|
|
|
<div class="buttons">
|
2021-03-30 14:37:36 +02:00
|
|
|
{{- range . }}
|
2022-05-17 18:30:09 +02:00
|
|
|
<a class="button" href="{{ trim .url " " }}" rel="noopener" title="{{ .name }}">
|
2022-07-08 16:59:56 +02:00
|
|
|
<span class="button-inner">
|
|
|
|
{{ .name }}
|
2022-07-08 19:56:29 +02:00
|
|
|
{{- if (findRE "://" .url) }}
|
2022-07-08 16:59:56 +02:00
|
|
|
<svg fill="none" shape-rendering="geometricPrecision" stroke="currentColor" stroke-linecap="round"
|
|
|
|
stroke-linejoin="round" stroke-width="2.5" viewBox="0 0 24 24" height="14" width="14">
|
|
|
|
<path d="M18 13v6a2 2 0 01-2 2H5a2 2 0 01-2-2V8a2 2 0 012-2h6"></path>
|
|
|
|
<path d="M15 3h6v6"></path>
|
|
|
|
<path d="M10 14L21 3"></path>
|
|
|
|
</svg>
|
|
|
|
{{- end }}
|
|
|
|
</span>
|
2020-09-23 13:09:23 +02:00
|
|
|
</a>
|
2021-03-30 14:37:36 +02:00
|
|
|
{{- end }}
|
2020-08-28 14:57:26 +02:00
|
|
|
</div>
|
|
|
|
{{- end }}
|
2020-08-25 13:47:24 +02:00
|
|
|
</div>
|
2020-09-23 09:22:32 +02:00
|
|
|
{{- end}}
|
2022-07-08 19:56:29 +02:00
|
|
|
</div>
|