2020-08-25 17:17:24 +05:30
|
|
|
<div class="profile">
|
2022-03-27 18:44:06 +05:30
|
|
|
{{- with site.Params.profileMode }}
|
2020-08-25 17:17:24 +05:30
|
|
|
<div class="profile_inner">
|
2021-03-30 18:07:36 +05:30
|
|
|
{{- if .imageUrl -}}
|
2022-03-27 19:55:28 +05:30
|
|
|
{{- $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 20:35:56 +05:30
|
|
|
<img src="{{ .imageUrl | absURL }}" alt="{{ .imageTitle | default "profile image" }}"
|
2021-03-30 18:07:36 +05:30
|
|
|
height="{{ .imageHeight | default 150 }}" width="{{ .imageWidth | default 150 }}" />
|
|
|
|
{{- end }}
|
2022-03-27 19:55:28 +05:30
|
|
|
{{- end }}
|
2022-03-27 18:44:06 +05:30
|
|
|
<h1>{{ .title | default site.Title | markdownify }}</h1>
|
2021-03-30 18:07:36 +05:30
|
|
|
<span>{{ .subtitle | markdownify }}</span>
|
2022-03-27 18:44:06 +05:30
|
|
|
{{- partial "social_icons.html" site.Params.socialIcons -}}
|
2020-10-02 13:46:49 +05:30
|
|
|
|
2020-09-06 20:07:57 +05:30
|
|
|
{{- with .buttons }}
|
2020-08-28 18:27:26 +05:30
|
|
|
<div class="buttons">
|
2021-03-30 18:07:36 +05:30
|
|
|
{{- range . }}
|
2021-05-01 22:13:54 +05:30
|
|
|
<a class="button" href="{{ trim .url " " }}" rel="noopener" title="{{ .name | title }}">
|
|
|
|
<span class="button-inner">{{ .name | title }}</span>
|
2020-09-23 16:39:23 +05:30
|
|
|
</a>
|
2021-03-30 18:07:36 +05:30
|
|
|
{{- 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}}
|
2022-03-27 19:55:28 +05:30
|
|
|
</div>
|