hugo-PaperMod/layouts/partials/home_info.html
2023-07-27 17:04:45 +02:00

20 lines
788 B
HTML

{{- with site.Params.homeInfoParams }}
<article class="first-entry home-info">
<header class="entry-header">
<h1>{{ .title | markdownify }}</h1>
</header>
<div class="home-info-container">
<a href="{{ .image.link | absURL }}" target="_blank" rel="noopener">
<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>
<div class="entry-content">
{{ .content | markdownify }}
</div>
</div>
<footer class="entry-footer">
{{ partial "social_icons.html" site.Params.socialIcons }}
</footer>
</article>
{{- end -}}