hugo-PaperMod/layouts/partials/home_info.html
2022-09-03 23:22:21 +07:00

18 lines
629 B
HTML

{{- with site.Params.homeInfoParams }}
<article class="first-entry home-info">
<div class="home-info__profile-img">
<img draggable="false" src="{{ .ImageUrl | absURL }}" alt="{{ .imageTitle | default "profile image" }}"
height="{{ .imageHeight | default 150 }}" width="{{ .imageWidth | default 150 }}" />
</div>
<header class="entry-header">
<h1>{{ .Title | markdownify }}</h1>
</header>
<div class="entry-content">
{{ .Content | markdownify }}
</div>
<footer class="entry-footer">
{{ partial "social_icons.html" site.Params.socialIcons }}
</footer>
</article>
{{- end -}}