2022-03-27 18:44:06 +05:30
|
|
|
{{- with site.Params.homeInfoParams }}
|
2020-10-08 15:50:20 +05:30
|
|
|
<article class="first-entry home-info">
|
2020-07-23 16:24:44 +05:30
|
|
|
<header class="entry-header">
|
2023-05-10 02:41:44 +02:00
|
|
|
<h1>{{ .title | markdownify }}</h1>
|
2020-07-23 16:24:44 +05:30
|
|
|
</header>
|
2023-05-10 02:58:53 +02:00
|
|
|
<div class="home-info-container">
|
2023-05-10 03:09:36 +02:00
|
|
|
{{- if .image.url}}
|
|
|
|
{{- if .image.link -}}
|
|
|
|
<a href="{{ .image.link | absURL }}" target="_blank" rel="noopener" style="width: 100%">
|
|
|
|
<img draggable="false" src="{{ .image.url | absURL }}" alt=" {{ .image.title | default "profile image" }}"
|
|
|
|
title="{{ .image.title }}" height="{{ .image.height | default 150 }}" width="{{ .image.width | default 150 }}" />
|
|
|
|
</a>
|
|
|
|
{{- else }}
|
|
|
|
<img draggable="false" src="{{ .image.url | absURL }}" alt=" {{ .image.title | default "profile image" }}"
|
|
|
|
title="{{ .image.title }}" height="{{ .image.height | default 150 }}" width="{{ .image.width | default 150 }}" />
|
|
|
|
{{- end }}
|
|
|
|
{{- end}}
|
2023-05-10 02:41:44 +02:00
|
|
|
<div class="entry-content">
|
|
|
|
{{ .content | markdownify }}
|
|
|
|
</div>
|
2022-04-19 20:34:59 +05:30
|
|
|
</div>
|
2020-08-28 17:19:10 +05:30
|
|
|
<footer class="entry-footer">
|
2022-03-27 18:44:06 +05:30
|
|
|
{{ partial "social_icons.html" site.Params.socialIcons }}
|
2020-08-28 17:19:10 +05:30
|
|
|
</footer>
|
2020-07-23 16:24:44 +05:30
|
|
|
</article>
|
2021-03-30 18:07:36 +05:30
|
|
|
{{- end -}}
|