hugo-PaperMod/layouts/partials/home_info.html

27 lines
1.2 KiB
HTML
Raw Normal View History

{{- with site.Params.homeInfoParams }}
<article class="first-entry home-info">
<header class="entry-header">
2023-05-10 02:41:44 +02:00
<h1>{{ .title | markdownify }}</h1>
</header>
2023-05-10 02:58:53 +02:00
<div class="home-info-container">
{{- 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>
</div>
2020-08-28 13:49:10 +02:00
<footer class="entry-footer">
{{ partial "social_icons.html" site.Params.socialIcons }}
2020-08-28 13:49:10 +02:00
</footer>
</article>
2021-03-30 14:37:36 +02:00
{{- end -}}