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-09-03 16:06:39 +05:30
|
|
|
{{- $img := "" }}
|
|
|
|
{{- if not (urls.Parse .imageUrl).IsAbs }}
|
|
|
|
{{- $img = resources.Get .imageUrl }}
|
|
|
|
{{- end }}
|
2022-03-27 19:55:28 +05:30
|
|
|
{{- 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 }}
|
2022-07-09 20:08:58 +05:30
|
|
|
<img draggable="false" src="{{ $img.Permalink }}" alt="{{ .imageTitle | default "profile image" }}" title="{{ .imageTitle }}"
|
2022-03-27 19:55:28 +05:30
|
|
|
height="{{ .imageHeight | default 150 }}" width="{{ .imageWidth | default 150 }}" />
|
|
|
|
{{- else }}
|
2022-07-09 20:08:58 +05:30
|
|
|
<img draggable="false" src="{{ .imageUrl | absURL }}" alt="{{ .imageTitle | default "profile image" }}" title="{{ .imageTitle }}"
|
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 . }}
|
2022-05-17 22:00:09 +05:30
|
|
|
<a class="button" href="{{ trim .url " " }}" rel="noopener" title="{{ .name }}">
|
2022-07-08 20:29:56 +05:30
|
|
|
<span class="button-inner">
|
|
|
|
{{ .name }}
|
2022-07-08 23:26:29 +05:30
|
|
|
{{- if (findRE "://" .url) }}
|
2022-07-08 20:29:56 +05:30
|
|
|
<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 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-07-08 23:26:29 +05:30
|
|
|
</div>
|