hugo-PaperMod/layouts/partials/home_info.html

14 lines
388 B
HTML
Raw Normal View History

{{- with site.Params.homeInfoParams }}
<article class="first-entry home-info">
<header class="entry-header">
2021-03-30 14:37:36 +02:00
<h1>{{ .Title | markdownify }}</h1>
</header>
<div class="entry-content">
{{ .Content | markdownify }}
</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 -}}